/* IDEC - Premium Landing Page | Design Luxuoso 2026 */
/* Paleta: Azul Escuro #0F2847 + Branco #FFFFFF + Dourado #D4AF37 */

:root {
    --primary-dark: #0F2847;
    --primary-darker: #051420;
    --primary-light: #1a3a5c;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E8C857;
    --accent-gold-dark: #B8941F;
    --text-dark: #0F2847;
    --text-light: #5a6c7d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fc;
    --bg-very-light: #f0f2f7;
    --border-gold: #d4af3744;
    --shadow-sm: 0 4px 15px rgba(15, 40, 71, 0.08);
    --shadow-md: 0 10px 35px rgba(15, 40, 71, 0.12);
    --shadow-lg: 0 20px 50px rgba(15, 40, 71, 0.15);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.15);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* BOTÕES */
.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    border: 2px solid;
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    z-index: -1;
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: visible;
}

.btn-primary::after {
    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%);
    pointer-events: none;
}

.btn-primary:hover::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

@keyframes pulse-button {
    0% {
        transform: translateY(-3px) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
    100% {
        transform: translateY(-3px) scale(1);
    }
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.btn-cta {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.btn-cta:hover {
    background-color: var(--accent-gold-dark);
    color: var(--bg-white);
    border-color: var(--accent-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 65px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo-section img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    letter-spacing: 0.3px;
    animation: slideInDown 0.6s ease;
}

.nav-menu a:nth-child(1) { animation-delay: 0.1s; }
.nav-menu a:nth-child(2) { animation-delay: 0.2s; }
.nav-menu a:nth-child(3) { animation-delay: 0.3s; }
.nav-menu a:nth-child(4) { animation-delay: 0.4s; }
.nav-menu a:nth-child(5) { animation-delay: 0.5s; }
.nav-menu a:nth-child(6) { animation-delay: 0.6s; }
.nav-menu a:nth-child(7) { animation-delay: 0.7s; }

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cta-nav {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--bg-white) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 0.35rem;
    box-shadow: var(--shadow-md);
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 28px;
    height: 2.5px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    margin-top: 70px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Símbolo de Direito (Balança) em Espelho */
.hero::after {
    content: '⚖';
    position: absolute;
    top: 10%;
    right: -5%;
    font-size: 45rem;
    opacity: 0.03;
    transform: scaleX(-1);
    pointer-events: none;
    color: var(--accent-gold);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.shape {
    position: absolute;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    animation: float 7s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 5%;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(40px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.95);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

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

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes tiltIn {
    from {
        opacity: 0;
        transform: perspective(1200px) rotateX(10deg) rotateY(-5deg) scale(0.95);
    }
    to {
        opacity: 1;
        transform: perspective(1200px) rotateX(0) rotateY(0) scale(1);
    }
}

/* PARALLAX EFFECT - Seções */
@media (min-width: 768px) {
    .areas {
        position: relative;
        background-attachment: scroll;
    }
    
    .areas::before {
        animation: float 12s ease-in-out infinite;
    }
    
    .modalidades {
        position: relative;
    }
    
    .cursos {
        position: relative;
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(0.95);
    }
    20%, 40%, 60%, 80% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-title {
    font-size: 3.8rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--accent-gold);
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ÁREAS DE ATUAÇÃO */
.areas {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-very-light) 100%);
    position: relative;
    overflow: hidden;
}

.areas::after {
    content: '⚖';
    position: absolute;
    bottom: -50px;
    right: -80px;
    font-size: 400px;
    color: rgba(212, 175, 55, 0.04);
    font-weight: bold;
    z-index: 0;
    pointer-events: none;
    transform: scaleX(-1);
}

.areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    margin: 1rem auto 0;
}

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

.area-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--accent-gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease both;
}

.area-card:nth-child(1) { animation-delay: 0.1s; }
.area-card:nth-child(2) { animation-delay: 0.2s; }
.area-card:nth-child(3) { animation-delay: 0.3s; }
.area-card:nth-child(4) { animation-delay: 0.4s; }
.area-card:nth-child(5) { animation-delay: 0.5s; }
.area-card:nth-child(6) { animation-delay: 0.6s; }

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

.area-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.area-card:hover::after {
    left: 100%;
}

.area-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px) rotateX(5deg);
    border-left-color: var(--accent-gold-light);
}

.area-icon-shape {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.area-card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

/* MODALIDADES */
.modalidades {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-very-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.modalidades::after {
    content: '📚';
    position: absolute;
    top: -80px;
    left: -100px;
    font-size: 350px;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.modalidades::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

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

.modalidade-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent-gold);
    transition: var(--transition);
    position: relative;
}

.modalidade-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    background: linear-gradient(135deg, var(--bg-white), rgba(212, 175, 55, 0.03));
}

.modalidade-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modalidade-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-display);
}

.modalidade-card h3 {
    font-size: 1.5rem;
    margin: 0;
}

.modalidade-features {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gold);
}

.modalidade-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.check-mark {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: bold;
    flex-shrink: 0;
}

.check-mark::before {
    content: '✓';
    font-size: 0.75rem;
}

/* CURSOS */
.cursos {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-very-light) 100%);
    position: relative;
    overflow: hidden;
}

.cursos::after {
    content: '🎓';
    position: absolute;
    bottom: -100px;
    right: -120px;
    font-size: 400px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.cursos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

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

.curso-card {
    background: var(--bg-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    animation: rotateIn 0.6s ease both;
}

.curso-card:nth-child(1) { animation-delay: 0.1s; }
.curso-card:nth-child(2) { animation-delay: 0.2s; }
.curso-card:nth-child(3) { animation-delay: 0.3s; }
.curso-card:nth-child(4) { animation-delay: 0.4s; }
.curso-card:nth-child(5) { animation-delay: 0.5s; }
.curso-card:nth-child(6) { animation-delay: 0.6s; }

.curso-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-16px) rotateY(3deg);
    filter: brightness(1.05);
}

.curso-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.curso-capa {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.curso-card:hover .curso-capa {
    transform: scale(1.08);
}

.curso-card:hover .curso-image {
    animation: none;
}

.curso-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(212, 175, 55, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(212, 175, 55, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(212, 175, 55, 0.05) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    }
    100% {
        background-position: 40px 0, 40px 20px, 60px -20px, 20px 0px;
    }
}

.curso-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
}

.curso-image-title {
    font-size: 1.3rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.curso-content {
    padding: 2rem;
}

.curso-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.curso-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.curso-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.curso-tag {
    background: var(--border-gold);
    color: var(--primary-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-curso {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-curso:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
}

/* VISÃO */
.visao {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-very-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.visao::after {
    content: '👁️';
    position: absolute;
    bottom: -80px;
    left: -100px;
    font-size: 350px;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.visao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.visao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.visao-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.visao-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.visao-highlight {
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.3px;
}

.visao-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascote-profissional {
    height: 380px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    animation: float 4s ease-in-out infinite;
}

/* CRONOGRAMA 2026 */
.cronograma {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-very-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.cronograma::after {
    content: '📅';
    position: absolute;
    bottom: -60px;
    right: -80px;
    font-size: 320px;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.cronograma::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
}

.cronograma-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cronograma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .cronograma-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cronograma-grid {
        grid-template-columns: 1fr;
    }
    
    .cronograma-card-header {
        display: none;
    }
    
    .cronograma-card {
        background: linear-gradient(135deg, var(--bg-white) 0%, rgba(212, 175, 55, 0.03) 100%);
        border: 1px solid rgba(212, 175, 55, 0.15);
        border-top: 3px solid var(--accent-gold);
    }
    
    .cronograma-card-body {
        padding: 1.5rem 1.25rem;
    }
}

.cronograma-card {
    background: var(--bg-white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease both;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-top: 4px solid var(--accent-gold);
}

.cronograma-card:nth-child(1) { animation-delay: 0.1s; }
.cronograma-card:nth-child(2) { animation-delay: 0.2s; }
.cronograma-card:nth-child(3) { animation-delay: 0.3s; }
.cronograma-card:nth-child(4) { animation-delay: 0.4s; }
.cronograma-card:nth-child(5) { animation-delay: 0.5s; }
.cronograma-card:nth-child(6) { animation-delay: 0.6s; }
.cronograma-card:nth-child(7) { animation-delay: 0.7s; }
.cronograma-card:nth-child(8) { animation-delay: 0.8s; }
.cronograma-card:nth-child(9) { animation-delay: 0.9s; }

.cronograma-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.cronograma-card-header {
    height: 180px;
    background: linear-gradient(135deg, #0F2847 0%, #1a5c7a 50%, #2d8aa8 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    overflow: hidden;
}

.cronograma-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(212, 175, 55, 0.08) 15px,
            rgba(212, 175, 55, 0.08) 30px
        ),
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 138, 168, 0.3) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.cronograma-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.cronograma-capa {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cronograma-mes {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.cronograma-card-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cronograma-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.cronograma-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.btn-cronograma {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    align-self: flex-start;
}

.btn-cronograma::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-cronograma:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cronograma-info {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 3rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-top: 2rem;
}

.cronograma-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cronograma-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* DEPOIMENTOS */
.depoimentos {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-very-light) 100%);
    position: relative;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.depoimento-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--accent-gold);
    animation: scaleUp 0.6s ease both;
}

.depoimento-card:nth-child(1) { animation-delay: 0.1s; }
.depoimento-card:nth-child(2) { animation-delay: 0.2s; }
.depoimento-card:nth-child(3) { animation-delay: 0.3s; }
.depoimento-card:nth-child(4) { animation-delay: 0.4s; }
.depoimento-card:nth-child(5) { animation-delay: 0.5s; }
.depoimento-card:nth-child(6) { animation-delay: 0.6s; }

.depoimento-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px) scale(1.02);
    background: linear-gradient(135deg, var(--bg-white), rgba(212, 175, 55, 0.03));
    border-top-color: var(--accent-gold-light);
    animation: glow 1.5s ease infinite;
}

.depoimento-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    animation: bounce 1s ease infinite;
}

.depoimento-texto {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
    border-left: 3px solid var(--accent-gold);
    padding-left: 1rem;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gold);
}

.depoimento-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.depoimento-nome {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.depoimento-cargo {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ESTATÍSTICAS */
.estatisticas {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.estatisticas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.estatisticas::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    color: var(--bg-white);
}

.stat-number {
    font-size: 3.5rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* FAQ */
.faq {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-very-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: '❓';
    position: absolute;
    top: -80px;
    right: -100px;
    font-size: 350px;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--border-gold);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
    text-align: left;
    font-family: var(--font-body);
}

.faq-question:hover {
    background: var(--bg-very-light);
    padding-left: 2rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: bold;
    transition: var(--transition);
    min-width: 30px;
    text-align: right;
}

.faq-item.active .faq-question {
    background: var(--bg-very-light);
    color: var(--primary-dark);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background: var(--bg-very-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* VALORES */
.valores {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-very-light) 100%);
    position: relative;
    overflow: hidden;
}

.valores::after {
    content: '❤️';
    position: absolute;
    top: -50px;
    right: -100px;
    font-size: 350px;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.valores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

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

.valor-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    animation: slideInUp 0.6s ease both;
}

.valor-card:nth-child(1) { animation-delay: 0.1s; }
.valor-card:nth-child(2) { animation-delay: 0.2s; }
.valor-card:nth-child(3) { animation-delay: 0.3s; }
.valor-card:nth-child(4) { animation-delay: 0.4s; }
.valor-card:nth-child(5) { animation-delay: 0.5s; }
.valor-card:nth-child(6) { animation-delay: 0.6s; }

.valor-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px) scale(1.05);
}

.valor-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    animation: slideInUp 0.6s ease both;
    border-top: 4px solid var(--accent-gold);
}

.valor-card:nth-child(1) { animation-delay: 0.1s; }
.valor-card:nth-child(2) { animation-delay: 0.2s; }
.valor-card:nth-child(3) { animation-delay: 0.3s; }
.valor-card:nth-child(4) { animation-delay: 0.4s; }
.valor-card:nth-child(5) { animation-delay: 0.5s; }
.valor-card:nth-child(6) { animation-delay: 0.6s; }

.valor-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px) scale(1.05);
}

.valor-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.valor-card p {
    font-size: 0.95rem;
}

/* CTA PRINCIPAL */
.cta-principal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-family: var(--font-display);
    color: var(--bg-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content h2 strong {
    color: var(--accent-gold);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* CONTATO */
.contato {
    padding: 8rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.contato::after {
    content: '📧';
    position: absolute;
    bottom: -100px;
    left: -120px;
    font-size: 400px;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-gold);
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
    animation: slideInLeft 0.6s ease both;
}

.form-group:nth-child(1) input { animation-delay: 0.1s; }
.form-group:nth-child(2) input { animation-delay: 0.2s; }
.form-group:nth-child(3) input { animation-delay: 0.3s; }
.form-group:nth-child(4) textarea { animation-delay: 0.4s; }

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(212, 175, 55, 0.01);
}

.form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.form-status {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    display: none;
}

.form-status.success {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid #27ae60;
    display: block;
}

.form-status.error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
    display: block;
}

.contact-info {
    background: var(--bg-very-light);
    padding: 2.5rem;
    border-radius: 0.75rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-gold);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon-shape {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}

.contact-item a {
    color: var(--accent-gold);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--accent-gold-dark);
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    color: rgba(255, 255, 255, 0.9);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

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

.footer-section h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-credits,
.footer-made-by {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-made-by a {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-made-by a:hover {
    color: var(--accent-gold-light);
}

/* BOTÃO WHATSAPP */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visao-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        margin-top: 60px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .areas {
        padding: 4rem 0;
    }

    .areas-grid {
        gap: 1.5rem;
    }

    .area-card {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

    .logo-section img {
        height: 50px;
    }
}