* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInBody 0.8s ease forwards;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ===== HEADER FIXO ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--branco);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    animation: slideDownHeader 0.6s ease-out;
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 90%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--verde-institucional);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    animation: logoFadeIn 0.8s ease-out 0.2s both;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo:hover {
    transform: scale(1.05);
}

.logo > img.logo-img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    max-height: 100px;
}

@media (max-width: 1370px) {
    .logo > img.logo-img {
        height: 70px;
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .logo > img.logo-img {
        height: 60px;
        max-height: 60px;
    }
}

/* ===== OTIMIZAÇÃO PARA TELAS MUITO PEQUENAS (320px - 480px) ===== */
@media (max-width: 480px) {
    header {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    nav {
        max-width: 100%;
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1.2rem;
        gap: 0.3rem;
        flex: 1;
        min-width: 0;
    }
    
    .logo > img.logo-img {
        height: 45px;
        max-height: 45px;
        width: auto;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .language-btn {
        padding: 0.4rem 0.7rem;
        min-width: 60px;
        font-size: 0.8rem;
    }
    
    .language-text {
        font-size: 0.75rem;
    }
    
    .language-dropdown {
        min-width: 150px;
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        min-width: 40px;
        min-height: 40px;
        padding: 0.4rem;
        font-size: 1.2rem;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        margin-left: 0;
    }
    
    .mobile-menu-btn i {
        font-size: 1.2rem;
        line-height: 1;
        display: block;
    }
}

/* ===== OTIMIZAÇÃO ESPECÍFICA PARA TELAS EXTRA PEQUENAS (320px - 375px) ===== */
@media (max-width: 375px) {
    nav {
        padding: 0.5rem 0.8rem;
        gap: 0.4rem;
    }
    
    .logo {
        font-size: 1rem;
        gap: 0.25rem;
    }
    
    .logo > img.logo-img {
        height: 40px;
        max-height: 40px;
    }
    
    .header-actions {
        gap: 0.4rem;
    }
    
    .language-btn {
        padding: 0.35rem 0.6rem;
        min-width: 55px;
        font-size: 0.75rem;
    }
    
    .language-text {
        font-size: 0.7rem;
    }
    
    .language-dropdown {
        min-width: 140px;
    }
    
    .mobile-menu-btn {
        min-width: 36px;
        min-height: 36px;
        padding: 0.3rem;
        font-size: 1.1rem;
        margin-left: 0;
    }
    
    .mobile-menu-btn i {
        font-size: 1.1rem;
    }
}

.logo:hover > img.logo-img {
    transform: scale(1.05) rotate(2deg);
}

.logo i {
    color: var(--dourado);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    animation: navFadeIn 0.8s ease-out 0.3s both;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 1570px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .language-btn {
        padding: 0.45rem 0.8rem;
        font-size: 0.85rem;
        min-width: 65px;
    }
    
    .language-text {
        font-size: 0.8rem;
    }
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu li {
    animation: navItemFadeIn 0.5s ease-out both;
}

.nav-menu li:nth-child(1) { animation-delay: 0.4s; }
.nav-menu li:nth-child(2) { animation-delay: 0.45s; }
.nav-menu li:nth-child(3) { animation-delay: 0.5s; }
.nav-menu li:nth-child(4) { animation-delay: 0.55s; }
.nav-menu li:nth-child(5) { animation-delay: 0.6s; }
.nav-menu li:nth-child(6) { animation-delay: 0.65s; }
.nav-menu li:nth-child(7) { animation-delay: 0.7s; }
.nav-menu li:nth-child(8) { animation-delay: 0.75s; }
.nav-menu li:nth-child(9) { animation-delay: 0.8s; }
.nav-menu li:nth-child(10) { animation-delay: 0.85s; }
.nav-menu li:nth-child(11) { animation-delay: 0.9s; }

@keyframes navItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu a {
    color: var(--verde-institucional);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--laranja-vibrante), var(--dourado));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--laranja-vibrante);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    opacity: 0.5;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--laranja-vibrante);
    transform: translateY(-2px);
}

/* ===== HEADER ACTIONS (IDIOMA E MENU MOBILE) ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* ===== SELETOR DE IDIOMA ===== */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid var(--verde-institucional);
    color: var(--verde-institucional);
    padding: 0.5rem 0.9rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Open Sans', sans-serif;
    min-width: 70px;
    justify-content: center;
}

.language-btn:hover {
    background: var(--verde-institucional);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 62, 40, 0.3);
}

.language-btn:active {
    transform: translateY(0) scale(0.98);
}

.language-btn i.fa-globe {
    font-size: 1rem;
}

.language-text {
    font-size: 0.85rem;
    font-weight: 700;
}

.language-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-selector.active .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--branco);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    overflow: hidden;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--verde-institucional);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.language-option:hover {
    background: rgba(16, 62, 40, 0.05);
    border-left-color: var(--laranja-vibrante);
    padding-left: 1.5rem;
}

.language-option.active {
    background: rgba(16, 62, 40, 0.1);
    border-left-color: var(--dourado);
    font-weight: 600;
    color: var(--verde-institucional);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--verde-institucional);
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-menu-btn i {
    display: block;
    line-height: 1;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    background: rgba(16, 62, 40, 0.1);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* ===== HERO SECTION ESTÁTICO ===== */
#inicio {
    margin-top: 80px;
    position: relative;
    min-height: calc(100vh + 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    overflow: visible;
}

.hero-static {
    position: relative;
    width: 100%;
    min-height: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url('/assets/img/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Mudado de fixed para scroll em mobile */
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 62, 40, 0.85) 0%, rgba(160, 106, 26, 0.75) 100%);
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: heroShine 8s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes heroShine {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--branco);
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    animation: fadeInUpScale 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 4.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: titleSlideIn 1s ease-out 0.3s both;
    position: relative;
    font-weight: 800;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    animation: textFadeIn 1s ease-out 0.6s both;
    line-height: 1.6;
    word-wrap: break-word;
    hyphens: auto;
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonFadeIn 1s ease-out 0.9s both;
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    color: var(--branco);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-primary {
    background: var(--laranja-vibrante);
    box-shadow: 0 4px 15px rgba(200, 118, 32, 0.4);
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(200, 118, 32, 0.7);
    background: #D6892A;
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--branco);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    border-color: var(--laranja-vibrante);
}

/* ===== LOGO GRANDE NA HERO SECTION ===== */
.hero-logo-large {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: logoFadeInLarge 1.5s ease-out 1.2s both;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes logoFadeInLarge {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.large-logo-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-logo-large {
        margin-top: 2rem;
    }
    
    .large-logo-img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-logo-large {
        margin-top: 1.5rem;
    }
    
    .large-logo-img {
        max-width: 300px;
    }
}

/* ===== SEÇÃO: AVISO DO EVENTO ===== */
.evento-aviso {
    background: linear-gradient(135deg, var(--verde-institucional) 0%, var(--dourado) 100%);
    color: var(--branco);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.evento-aviso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.evento-aviso-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.evento-aviso-icon {
    font-size: 4rem;
    color: var(--laranja-vibrante);
    margin-bottom: 1.5rem;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.evento-aviso-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--branco);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.evento-aviso-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.evento-aviso-description p {
    margin-bottom: 1.5rem;
}

.evento-aviso-description p:last-child {
    margin-bottom: 0;
}

.evento-aviso-description strong {
    color: var(--laranja-vibrante);
    font-weight: 700;
}

@media (max-width: 768px) {
    .evento-aviso {
        padding: 3rem 1.5rem;
    }
    
    .evento-aviso-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .evento-aviso-title {
        margin-bottom: 1.5rem;
    }
    
    .evento-aviso-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .evento-aviso {
        padding: 2.5rem 1rem;
    }
    
    .evento-aviso-icon {
        font-size: 2.5rem;
    }
    
    .evento-aviso-description {
        font-size: 0.95rem;
    }
}

/* ===== SEÇÕES GERAIS ===== */
section {
    padding: 5rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--verde-institucional);
    margin-bottom: 1rem;
}

.section-title .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dourado), var(--laranja-vibrante));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    animation: dividerExpand 1s ease-out 0.5s both;
}

@keyframes dividerExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.section-title .divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: dividerShine 2s infinite;
}

@keyframes dividerShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===== SEÇÃO: A CIMBRAF ===== */
#cimbraf {
    background: var(--bege-claro);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-card {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--dourado);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(160, 106, 26, 0.1), transparent);
    transition: left 0.6s ease;
}

.mvv-card:hover::before {
    left: 100%;
}

.mvv-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-top-color: var(--laranja-vibrante);
}

.mvv-card h3 {
    color: var(--verde-institucional);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mvv-card h3 i {
    color: var(--dourado);
    font-size: 1.8rem;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
}

.mvv-card ul li {
    padding: 0.5rem 0;
    color: #555;
}

.mvv-card ul li i {
    color: var(--laranja-vibrante);
    margin-right: 0.5rem;
}

/* ===== SEÇÃO: GALERIA ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
    background: linear-gradient(135deg, var(--verde-institucional), var(--dourado));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 62, 40, 0.8), rgba(160, 106, 26, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    width: 200%;
    height: 200%;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--branco);
    font-size: 2.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gallery-item:hover i {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--branco);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--laranja-vibrante);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: var(--branco);
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ===== SEÇÃO: DIRETORIA ===== */
#diretoria {
    background: var(--bege-claro);
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.8rem;
    margin-top: 2rem;
}

.director-card {
    background: var(--branco);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
}

.director-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 62, 40, 0.05), rgba(160, 106, 26, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.director-card:hover::after {
    opacity: 1;
}

.director-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.director-photo {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--verde-institucional), var(--dourado));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.director-photo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: photoShine 3s infinite;
}

@keyframes photoShine {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.director-card:hover .director-photo {
    transform: scale(1.1);
}

.director-photo i {
    font-size: 6rem;
    color: rgba(255,255,255,0.3);
    transition: all 0.4s ease;
    z-index: 1;
    position: relative;
}

.director-card:hover .director-photo i {
    transform: scale(1.1) rotate(5deg);
    color: rgba(255,255,255,0.5);
}

.director-info {
    padding: 0.8rem;
}

.director-info h3 {
    color: var(--verde-institucional);
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    line-height: 1.2;
}

.director-info .position {
    color: var(--dourado);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.director-info .bio {
    color: #666;
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.director-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.director-social a {
    color: var(--cinza-neutro);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.director-social a:hover {
    color: var(--laranja-vibrante);
}

/* ===== SEÇÃO: PARCEIROS ===== */
#parceiros {
    background: var(--verde-institucional);
    color: var(--branco);
}

#parceiros .section-title h2 {
    color: var(--branco);
}

.partners-section {
    margin-bottom: 4rem;
}

.partners-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--dourado);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-logo {
    background: var(--branco);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    min-height: 180px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(16, 62, 40, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
}

.partner-logo:hover::before {
    width: 300px;
    height: 300px;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255,255,255,0.3);
    background: linear-gradient(135deg, var(--branco), #f5f5f5);
}

.partner-logo:hover img {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.partner-logo i {
    font-size: 3rem;
    color: var(--verde-institucional);
    transition: all 0.4s ease;
    z-index: 1;
    position: relative;
}

.partner-logo:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: var(--laranja-vibrante);
}

/* ===== SEÇÃO: PROJETOS ===== */
#projetos {
    background: var(--bege-claro);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* ===== PROJETOS EM BREVE ===== */
.projects-coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.coming-soon-card {
    background: linear-gradient(135deg, var(--branco) 0%, rgba(247, 245, 238, 0.8) 100%);
    border-radius: 25px;
    padding: 4rem 3rem;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--verde-institucional), var(--dourado), var(--laranja-vibrante));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.coming-soon-card:hover::before {
    opacity: 1;
}

.coming-soon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.coming-soon-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--verde-institucional), var(--dourado));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(16, 62, 40, 0.3);
    animation: float 3s ease-in-out infinite;
}

.icon-circle i {
    font-size: 3.5rem;
    color: var(--branco);
    animation: rocketPulse 2s ease-in-out infinite;
}

@keyframes rocketPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid var(--laranja-vibrante);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.7s;
}

.pulse-ring.delay-2 {
    animation-delay: 1.4s;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.coming-soon-card h3 {
    color: var(--verde-institucional);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.coming-soon-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-subtitle {
    color: var(--laranja-vibrante);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.coming-soon-subtitle i {
    animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.coming-soon-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.coming-soon-badges .badge {
    background: linear-gradient(135deg, rgba(16, 62, 40, 0.1), rgba(160, 106, 26, 0.1));
    color: var(--verde-institucional);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coming-soon-badges .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 118, 32, 0.2), transparent);
    transition: left 0.5s ease;
}

.coming-soon-badges .badge:hover::before {
    left: 100%;
}

.coming-soon-badges .badge:hover {
    background: linear-gradient(135deg, var(--verde-institucional), var(--dourado));
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 62, 40, 0.3);
    border-color: var(--laranja-vibrante);
}

.coming-soon-badges .badge i {
    font-size: 1rem;
}

/* ===== ESTILOS ANTIGOS (MANTIDOS PARA COMPATIBILIDADE) ===== */
.project-card {
    background: var(--branco);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 62, 40, 0.05), rgba(160, 106, 26, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.project-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--verde-institucional), var(--dourado));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.project-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: projectShine 4s infinite;
}

@keyframes projectShine {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-image i {
    font-size: 4rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.4s ease;
    z-index: 1;
    position: relative;
}

.project-card:hover .project-image i {
    transform: scale(1.2) rotate(10deg);
    color: rgba(255,255,255,0.8);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: var(--verde-institucional);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-link {
    display: inline-block;
    color: var(--laranja-vibrante);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--dourado);
}

/* ===== SEÇÃO: CONSULTORIA ===== */
#consultoria {
    background: var(--branco);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bege-claro);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--laranja-vibrante);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 118, 32, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left-width: 6px;
    background: var(--branco);
}

.service-card i {
    font-size: 3rem;
    color: var(--laranja-vibrante);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.service-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--dourado);
}

.service-card h3 {
    color: var(--verde-institucional);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* ===== BOTÃO DE SOLICITAÇÃO DE CONSULTORIA ===== */
.consultoria-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.consultoria-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--laranja-vibrante), var(--dourado));
    color: var(--branco);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(200, 118, 32, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.consultoria-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.consultoria-btn:hover::before {
    width: 400px;
    height: 400px;
}

.consultoria-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(200, 118, 32, 0.6);
    background: linear-gradient(135deg, #D6892A, #B85F15);
}

.consultoria-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.consultoria-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.consultoria-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

.consultoria-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--bege-claro);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--verde-institucional);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--branco);
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

/* Seta apenas para campos select */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--laranja-vibrante);
    box-shadow: 0 0 0 3px rgba(200, 118, 32, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--dourado);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Animação para campo de cursos dinâmico */
#curso-select-group {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--laranja-vibrante);
    color: var(--branco);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    background: #D6892A;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(200, 118, 32, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.submit-btn i {
    margin-right: 0.5rem;
}

/* ===== SEÇÃO: QUALIFICAÇÃO E CURSOS ===== */
#qualificacao {
    background: var(--bege-claro);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: start;
}

.course-card {
    background: var(--branco);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--dourado);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dourado), var(--laranja-vibrante));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-top-color: var(--laranja-vibrante);
}

.course-card i {
    font-size: 2.2rem;
    color: var(--dourado);
    margin-bottom: 0.8rem;
}

.course-card h3 {
    color: var(--verde-institucional);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.course-info {
    display: flex;
    gap: 1.2rem;
    margin: 0.8rem 0;
    color: var(--cinza-neutro);
    font-size: 0.9rem;
}

.course-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.course-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.course-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.course-details h4 {
    color: var(--verde-institucional);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.course-details ul,
.course-details ol {
    margin: 0;
    padding-left: 1.2rem;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.course-details ul li,
.course-details ol li {
    margin-bottom: 0.4rem;
}

.course-btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: var(--laranja-vibrante);
    color: var(--branco);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: auto;
    font-size: 0.95rem;
    margin-top: auto;
}

.course-btn:hover {
    background: #D6892A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 118, 32, 0.4);
}

/* ===== SEÇÃO: OPORTUNIDADES ===== */
#oportunidades {
    background: var(--branco);
}

.opportunities-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.opportunity-item {
    background: var(--bege-claro);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--laranja-vibrante);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    line-height: 1.7;
    display: block;
}

.opportunity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--laranja-vibrante), var(--dourado));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.opportunity-item:hover::before {
    transform: scaleY(1);
}

.opportunity-item:hover {
    transform: translateX(15px) scale(1.01);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: var(--branco);
    border-left-width: 6px;
}

.opportunity-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.opportunity-header h3 {
    color: var(--verde-institucional);
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.opportunity-badge {
    background: var(--laranja-vibrante);
    color: var(--branco);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.opportunity-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--cinza-neutro);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.opportunity-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.opportunity-item p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.opportunity-item p strong {
    color: var(--verde-institucional);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.opportunity-item p:first-of-type strong {
    margin-top: 0;
}

.opportunity-item ul,
.opportunity-item ol {
    margin: 0.5rem 0 1.5rem 0;
    padding-left: 1.8rem;
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.opportunity-item ul li,
.opportunity-item ol li {
    margin-bottom: 0.6rem;
    padding-left: 0.5rem;
    position: relative;
    line-height: 1.7;
}

.opportunity-item ul {
    list-style: none;
    padding-left: 0;
}

.opportunity-item ul li {
    padding-left: 1.5rem;
    position: relative;
}

.opportunity-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--laranja-vibrante);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5;
}

.opportunity-item ol {
    list-style-type: decimal;
    padding-left: 1.8rem;
}

.opportunity-item ol li::marker {
    color: var(--laranja-vibrante);
    font-weight: bold;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: var(--branco);
    border: 2px solid var(--dourado);
    color: var(--dourado);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--dourado);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--dourado);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(160, 106, 26, 0.4);
}

.filter-btn:active {
    transform: translateY(0) scale(0.95);
}

/* ===== SEÇÃO: BENEFÍCIOS ===== */
#beneficios {
    background: var(--dourado);
    color: var(--branco);
}

#beneficios .section-title h2 {
    color: var(--branco);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.benefit-card:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--laranja-vibrante);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
    z-index: 1;
    position: relative;
}

.benefit-card:hover i {
    transform: scale(1.3) rotate(15deg);
    color: var(--dourado);
}

.benefit-card h3 {
    color: var(--branco);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

/* ===== SEÇÃO: FILIE-SE (FOOTER/CTA FINAL) ===== */
#contato {
    background: linear-gradient(135deg, var(--verde-institucional) 0%, var(--dourado) 100%);
    color: var(--branco);
    padding: 5rem 2rem;
}

#contato .section-title h2 {
    color: var(--branco);
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.contato-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.contato-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    line-height: 1.8;
    padding: 0 1rem;
}

.contato-form {
    background: rgba(255,255,255,0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.contato-form .form-group label {
    color: var(--verde-institucional);
}

.contato-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--laranja-vibrante);
    color: var(--branco);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(200, 118, 32, 0.4);
    margin-top: 2rem;
}

.contato-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(200, 118, 32, 0.6);
    background: #D6892A;
}

.contact-info {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--laranja-vibrante);
    margin-top: 0.3rem;
}

.contact-item div h4 {
    color: var(--branco);
    margin-bottom: 0.5rem;
}

.contact-item div p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--laranja-vibrante);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    background: var(--laranja-vibrante);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(200, 118, 32, 0.5);
}

.social-links a:active {
    transform: translateY(-2px) scale(1.05);
}


/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de parallax suave */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Efeito de ondas */
@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(5px) translateY(-5px);
    }
    50% {
        transform: translateX(-5px) translateY(5px);
    }
    75% {
        transform: translateX(5px) translateY(5px);
    }
}

/* Animação de pulso */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Animação de float */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Animação de rotação suave */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animações escalonadas para elementos filhos */
.fade-in.visible > * {
    animation: staggerFadeIn 0.6s ease-out both;
}

.fade-in.visible > *:nth-child(1) { animation-delay: 0.1s; }
.fade-in.visible > *:nth-child(2) { animation-delay: 0.2s; }
.fade-in.visible > *:nth-child(3) { animation-delay: 0.3s; }
.fade-in.visible > *:nth-child(4) { animation-delay: 0.4s; }
.fade-in.visible > *:nth-child(5) { animation-delay: 0.5s; }

@keyframes staggerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVIDADE: MENU HAMBÚRGUER A PARTIR DE 1570px ===== */
@media (max-width: 1570px) {
    /* Overlay escuro quando menu está aberto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: var(--branco);
        flex-direction: column;
        padding: 1.2rem 1.5rem;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 20px rgba(0,0,0,0.15);
        z-index: 999;
        overflow-y: auto;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        animation: none;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        animation: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.65rem 0;
        width: 100%;
        font-size: 0.9rem;
    }
    
    .nav-menu a::before,
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .header-actions {
        order: 2;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }
    
    .language-selector {
        order: 1;
    }
    
    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 1001;
        order: 2;
    }
    
    .logo {
        order: 1;
        flex-shrink: 0;
    }
    
    .language-dropdown {
        right: 0;
    }
    
    header {
        z-index: 1000;
    }
    
    nav {
        flex-wrap: nowrap;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .logo {
        max-width: calc(100% - 60px);
    }
    
    .logo > img.logo-img {
        max-width: 100%;
        height: auto;
    }
}

/* ===== AJUSTE COMPACTO PARA DESKTOP (768px - 1570px) ===== */
@media (min-width: 769px) and (max-width: 1570px) {
    .nav-menu {
        max-width: 320px;
        padding: 1rem 1.2rem;
    }
    
    .nav-menu a {
        padding: 0.55rem 0;
        font-size: 0.85rem;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
}

/* ===== RESPONSIVIDADE: MOBILE ===== */
@media (max-width: 768px) {
    .nav-menu {
        max-width: 100%;
        top: 0;
        padding: 1.5rem 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.9rem 0;
    }
    
    nav {
        padding: 0.8rem 1rem;
    }
    
    .logo > img.logo-img {
        height: 50px;
        max-height: 50px;
    }
    
    .header-actions {
        gap: 0.6rem;
    }
    
    .language-btn {
        padding: 0.4rem 0.7rem;
        min-width: 58px;
        font-size: 0.8rem;
    }
    
    .language-text {
        font-size: 0.75rem;
    }
    
    .mobile-menu-btn {
        font-size: 1.3rem;
        padding: 0.4rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    /* ===== BOTÃO DE CONSULTORIA - MOBILE ===== */
    .consultoria-cta {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .consultoria-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    /* ===== PROJETOS EM BREVE - MOBILE ===== */
    .coming-soon-card {
        padding: 2.5rem 1.5rem;
        margin-top: 2rem;
    }
    
    .icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .icon-circle i {
        font-size: 3rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.6rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .coming-soon-badges {
        gap: 0.7rem;
    }
    
    .coming-soon-badges .badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* ===== AJUSTES ADICIONAIS PARA TELAS PEQUENAS NO MENU MOBILE ===== */
@media (max-width: 480px) {
    .nav-menu {
        padding: 1.2rem 1rem;
        max-width: 100%;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }
    
    /* ===== BOTÃO DE CONSULTORIA - TELAS PEQUENAS ===== */
    .consultoria-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    /* ===== PROJETOS EM BREVE - TELAS PEQUENAS ===== */
    .coming-soon-card {
        padding: 2rem 1.2rem;
    }
    
    .icon-circle {
        width: 90px;
        height: 90px;
    }
    
    .icon-circle i {
        font-size: 2.5rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.4rem;
    }
    
    .coming-soon-text {
        font-size: 0.95rem;
    }
    
    .coming-soon-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .coming-soon-badges .badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ===== TELAS MUITO PEQUENAS (até 320px) ===== */
@media (max-width: 320px) {
    #inicio {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    #contato {
        padding: 2rem 0.5rem;
    }
    
    .contato-content p {
        font-size: 0.9rem;
        padding: 0;
        margin-bottom: 1.2rem;
    }
    
    .contato-form {
        padding: 1.2rem 0.8rem;
        border-radius: 10px;
        margin-top: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .submit-btn {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .nav-menu {
        padding: 1rem 0.8rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.7rem 0;
    }
    
    #inicio {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding: 1rem 0;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
    
    #contato {
        padding: 2.5rem 0.8rem;
    }
    
    .contato-content p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contato-form {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-top: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .mvv-grid,
    .directors-grid,
    .projects-grid,
    .services-grid,
    .courses-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contato-form {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .form-group {
        margin-bottom: 1.8rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTEÚDO GERAL PARA MOBILE (768px) ===== */
@media (max-width: 768px) {
    #contato {
        padding: 3rem 1rem;
    }
    
    .contato-content p {
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .contato-form {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin-top: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.8rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1.1rem;
        font-size: 1.05rem;
    }
    #inicio {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding: 1rem 0;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        margin-bottom: clamp(0.8rem, 2vw, 1.5rem);
    }
    
    .hero-subtitle {
        margin-bottom: clamp(1.2rem, 3vw, 2.5rem);
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .mvv-grid,
    .projects-grid,
    .services-grid,
    .courses-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .directors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contato-form {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-top: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* ===== ACESSIBILIDADE ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

a:focus,
button:focus {
    outline: 3px solid var(--laranja-vibrante);
    outline-offset: 2px;
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bege-claro);
}

::-webkit-scrollbar-thumb {
    background: var(--dourado);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--laranja-vibrante);
}


/* ===== LOADING ANIMATION ===== */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== EFEITO DE TEXTO GRADIENTE ANIMADO ===== */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.gradient-text {
    background: linear-gradient(90deg, var(--dourado), var(--laranja-vibrante), var(--dourado));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

/* ===== EFEITO DE GLOW ===== */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(200, 118, 32, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(200, 118, 32, 0.8);
    }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}