/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
    --gold: #C9A961;
    --navy: #1B3A6B;
    --navy-light: #2B5A9E;
    --dark: #1a1a1a;
    --dark-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: rgba(201, 169, 97, 0.2);
    }
    
    a, button {
        cursor: pointer;
        -webkit-touch-callout: none;
    }
    
    /* Larger touch targets for mobile */
    .btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .info-card,
    .plano-card,
    .pilar-card,
    .trajetoria-card {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Disable hover effects on touch devices */
    .touch-device .plano-card:hover,
    .touch-device .pilar-card:hover,
    .touch-device .trajetoria-card:hover,
    .touch-device .about-card:hover,
    .touch-device .info-card:hover {
        transform: none;
    }
    
    /* Active state for touch */
    .btn:active {
        transform: scale(0.97);
    }
    
    .plano-card:active,
    .info-card:active {
        transform: scale(0.99);
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px var(--shadow);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 26, 1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gold), var(--navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--light-gray);
    letter-spacing: 4px;
    font-weight: 300;
    margin-top: -5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:not(.btn-acessar)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:not(.btn-acessar):hover::after {
    width: 100%;
}

.btn-acessar {
    background: linear-gradient(135deg, var(--gold), var(--navy));
    padding: 0.75rem 2rem !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-acessar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.6);
    border-color: var(--gold);
}

.btn-acessar::after {
    display: none !important;
}

/* Controle de visibilidade desktop/mobile */
.btn-acessar-mobile {
    display: none; /* Oculto por padrão (desktop) */
}

.btn-acessar-desktop {
    display: inline-flex; /* Visível por padrão (desktop) */
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--navy));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(27, 58, 107, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-title .highlight {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gold), var(--navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--light-gray);
    animation: fadeInUp 1s ease-out;
}

.hero-text {
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1.4s ease-out;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
}

.stat-item i {
    font-size: 2rem;
    color: var(--gold);
}

.stat-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
    animation: bounce 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ===========================
   SECTIONS
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.section-about {
    padding: 6rem 0;
    background: var(--light-gray);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 2rem;
    color: var(--white);
}

.about-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.highlight-text {
    font-style: italic;
    font-weight: 500;
    color: var(--gold) !important;
    font-size: 1.3rem !important;
}

/* ===========================
   TRAJETORIA SECTION
   =========================== */
.section-trajetoria {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
}

.section-trajetoria .section-title {
    color: var(--white);
}

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

.trajetoria-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.trajetoria-card.visible {
    opacity: 1;
    transform: scale(1);
}

.trajetoria-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.trajetoria-card.highlighted {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(27, 58, 107, 0.2));
    border-color: var(--gold);
}

.trajetoria-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.trajetoria-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trajetoria-label {
    font-size: 1rem;
    color: var(--light-gray);
    font-weight: 300;
}

/* ===========================
   COMO FUNCIONA SECTION
   =========================== */
.section-como-funciona {
    padding: 6rem 0;
    background: var(--light-gray);
}

.funciona-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.funciona-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
}

.funciona-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.funciona-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 100px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(to bottom, var(--gold), var(--navy));
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.step-content h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

/* ===========================
   PLANOS SECTION
   =========================== */
.section-planos {
    padding: 6rem 0;
    background: var(--white);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.plano-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.plano-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.plano-card.featured {
    border-color: var(--gold);
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--navy));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plano-header {
    margin-bottom: 2rem;
}

.plano-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.plano-icon.bronze {
    background: linear-gradient(135deg, #CD7F32, #E89D65);
}

.plano-icon.prata {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
}

.plano-icon.ouro {
    background: linear-gradient(135deg, var(--gold), #FFD700);
}

.plano-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.plano-header h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.plano-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.1);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plano-price {
    margin-bottom: 2rem;
}

.price-daily {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
}

.plano-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-item i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    color: #666;
}

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

/* ===========================
   PILARES SECTION
   =========================== */
.section-pilares {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.pilar-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.pilar-card.visible {
    opacity: 1;
    transform: scale(1);
}

.pilar-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.pilar-letter {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.pilar-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.pilar-name {
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pilar-card p:not(.pilar-name) {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ===========================
   CARTA SECTION
   =========================== */
.section-carta {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
}

.carta-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.carta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.carta-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.carta-quote {
    font-size: 1.3rem;
    line-height: 2;
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 3rem;
    text-align: justify;
}

.carta-assinatura {
    text-align: center;
}

.assinatura-line {
    width: 200px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 1rem;
}

.assinatura-nome {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.assinatura-cargo {
    font-size: 1rem;
    color: var(--light-gray);
}

/* ===========================
   CONTATO SECTION
   =========================== */
.section-contato {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 1rem;
    color: #666;
}

.info-card p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.info-card p a:hover {
    color: var(--gold);
}

.contato-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

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

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-brand p {
    color: var(--light-gray);
    margin-top: 1rem;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(201, 169, 97, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(201, 169, 97, 0.8);
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet e Mobile Grande (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title .highlight {
        font-size: 3rem;
    }

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

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

    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .trajetoria-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .pilares-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navegação */
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Botão ACESSAR mobile - fixo no topo */
    .btn-acessar-mobile {
        display: inline-flex !important;
        position: fixed !important;
        top: 15px;
        right: 70px;
        padding: 0.6rem 1.2rem !important;
        font-size: 0.8rem !important;
        z-index: 1002;
        box-shadow: 0 4px 20px rgba(201, 169, 97, 0.6);
        animation: pulseButton 2s infinite;
    }
    
    /* Oculta versão desktop do menu */
    .btn-acessar-desktop {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        gap: 2rem;
        padding: 2rem;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 100px 20px 50px;
    }

    .hero-title .highlight {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-title .subtitle {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    /* Seções */
    .section-about,
    .section-trajetoria,
    .section-como-funciona,
    .section-planos,
    .section-pilares,
    .section-carta,
    .section-contato {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

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

    /* About */
    .about-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }

    .icon-box i {
        font-size: 1.8rem;
    }

    .about-card h3 {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 1.1rem !important;
    }

    /* Trajetória */
    .trajetoria-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .trajetoria-card {
        padding: 1.5rem;
    }

    .trajetoria-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .trajetoria-number {
        font-size: 2.5rem;
    }

    .trajetoria-label {
        font-size: 0.9rem;
    }

    /* Como Funciona */
    .funciona-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }

    .funciona-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }

    .step-content {
        padding: 2rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1.2rem;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.4rem;
    }

    /* Planos */
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .plano-card {
        padding: 2rem;
    }

    .plano-icon {
        width: 70px;
        height: 70px;
    }

    .plano-icon i {
        font-size: 2rem;
    }

    .plano-header h3 {
        font-size: 1.6rem;
    }

    .price-daily {
        font-size: 3rem;
    }

    .popular-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    /* Pilares */
    .pilares-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pilar-card {
        padding: 2rem;
    }

    .pilar-letter {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    /* Carta do Fundador */
    .carta-content {
        padding: 2rem;
    }

    .carta-header h2 {
        font-size: 2rem;
    }

    .carta-quote {
        font-size: 1.1rem;
        line-height: 1.8;
        text-align: left;
    }

    .quote-icon {
        font-size: 2.5rem;
    }

    .assinatura-nome {
        font-size: 1.7rem;
    }

    /* Contato */
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card i {
        font-size: 2rem;
    }

    .contato-form {
        padding: 2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links ul {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    /* Scroll to Top Button */
    .scroll-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Logo */
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .logo-subtitle {
        font-size: 0.55rem;
        letter-spacing: 3px;
    }

    /* Hero */
    .hero {
        padding: 90px 15px 40px;
    }

    .hero-title .highlight {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-title .subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .stat-item i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .stat-content {
        align-items: center;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-cta {
        width: 100%;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    /* Seções */
    .section-about,
    .section-trajetoria,
    .section-como-funciona,
    .section-planos,
    .section-pilares,
    .section-carta,
    .section-contato {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-tag {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: 1.7rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* About */
    .about-card {
        padding: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    .about-card p {
        font-size: 1rem;
    }

    /* Trajetória */
    .trajetoria-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trajetoria-card {
        padding: 1.5rem 1rem;
    }

    .trajetoria-icon {
        font-size: 2rem;
    }

    .trajetoria-number {
        font-size: 2.2rem;
    }

    /* Como Funciona */
    .step-content {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    /* Planos */
    .plano-card {
        padding: 1.5rem;
    }

    .plano-header h3 {
        font-size: 1.5rem;
    }

    .price-daily {
        font-size: 2.8rem;
    }

    .price-label {
        font-size: 1rem;
    }

    .feature-item {
        font-size: 0.95rem;
    }

    /* Pilares */
    .pilar-card {
        padding: 1.5rem;
    }

    .pilar-letter {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }

    .pilar-card h3 {
        font-size: 1.3rem;
    }

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

    /* Carta */
    .carta-content {
        padding: 1.5rem;
    }

    .carta-header h2 {
        font-size: 1.7rem;
    }

    .quote-icon {
        font-size: 2rem;
    }

    .carta-quote {
        font-size: 1rem;
        line-height: 1.7;
    }

    .assinatura-line {
        width: 150px;
    }

    .assinatura-nome {
        font-size: 1.5rem;
    }

    .assinatura-cargo {
        font-size: 0.9rem;
    }

    /* Contato */
    .info-card {
        padding: 1.2rem;
    }

    .info-card i {
        font-size: 1.8rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .contato-form {
        padding: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        display: none;
    }

    /* Scroll to Top */
    .scroll-to-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 0.9rem !important;
    }
}

/* Mobile Extra Pequeno (max-width: 360px) */
@media (max-width: 360px) {
    .hero-title .highlight {
        font-size: 1.8rem;
    }

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

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

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .trajetoria-number {
        font-size: 2rem;
    }

    .price-daily {
        font-size: 2.5rem;
    }
}