* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-escuro: #08163C;
    --azul-base: #13308F;
    --azul-vivo: #1C3FAE;
    --branco: #FFFFFF;
    --dourado: #D6B56A;
    --texto-secundario: rgba(255, 255, 255, 0.78);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--branco);
    background: var(--azul-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 22, 60, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-header {
    height: 45px;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--dourado);
}

.btn-header {
    background: linear-gradient(135deg, #F5D77A 0%, #D6B56A 50%, #B8924A 100%);
    color: var(--azul-escuro);
    padding: 0.75rem 1.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(214, 181, 106, 0.3);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 181, 106, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--branco);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #08163C 0%, #1C3FAE 55%, #13308F 100%);
    overflow: hidden;
}

.plexus-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 35% 20%, rgba(214, 181, 106, 0.18) 0%, rgba(214, 181, 106, 0) 45%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.logo-hero {
    max-width: 180px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    background: linear-gradient(
        90deg,
        #FFFFFF 0%,
        #D6B56A 25%,
        #FFFFFF 50%,
        #D6B56A 75%,
        #FFFFFF 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease 0.2s backwards, gradient-shift 8s ease infinite;
}

.hero h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--texto-secundario);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-bullet {
    background: transparent;
    border-left: 3px solid var(--dourado);
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    position: relative;
}

.hero-bullet::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.3);
    transition: height 0.4s ease;
}

.hero-bullet:hover {
    padding-left: 2rem;
    background: rgba(214, 181, 106, 0.05);
}

.hero-bullet:hover::before {
    height: 100%;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.btn-primary {
    background: linear-gradient(135deg, #F5D77A 0%, #D6B56A 50%, #B8924A 100%);
    color: var(--azul-escuro);
    padding: 1.4rem 4rem 1.4rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.15rem;
    line-height: 1.3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(214, 181, 106, 0.5),
                0 4px 12px rgba(214, 181, 106, 0.3);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: visible;
    letter-spacing: 0.3px;
    text-align: center;
}

.btn-primary::after {
    content: '→';
    font-size: 1.3rem;
    font-weight: 400;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover::after {
    transform: translateX(5px);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(214, 181, 106, 0.6),
                0 6px 16px rgba(214, 181, 106, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--branco);
    padding: 1.1rem 2.5rem;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--branco);
    transform: translateY(-2px);
}

.btn-microcopy {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.btn-primary .btn-microcopy {
    color: rgba(8, 22, 60, 0.7);
}

.btn-secondary .btn-microcopy {
    color: var(--texto-secundario);
}

.hero-credibility {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    font-size: 0.95rem;
    color: var(--texto-secundario);
}

/* Container padrão */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--texto-secundario);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Seção Problema */
.problema {
    background: linear-gradient(to bottom, var(--azul-escuro), var(--azul-base));
}

.problema-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problema p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--texto-secundario);
}

.problema-destaque {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dourado);
    margin: 2rem 0;
}

.problema-bullets {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problema-bullet {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ff4444;
    font-size: 1.1rem;
    color: var(--branco);
    transition: all 0.3s;
}

.problema-bullet:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

/* Como Funciona */
.como-funciona {
    background: var(--azul-base);
}

.como-funciona-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mockup-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-discord {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.passos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.passo-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.passo-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--dourado);
}

.passo-numero {
    background: var(--dourado);
    color: var(--azul-escuro);
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.passo-texto h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.passo-texto p {
    color: var(--texto-secundario);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Entregáveis */
.entregaveis {
    background: linear-gradient(to bottom, var(--azul-base), var(--azul-escuro));
}

.entregaveis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.entregavel-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s;
}

.entregavel-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
}

.entregavel-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.entregavel-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.entregavel-card p {
    color: var(--texto-secundario);
    font-size: 1.05rem;
}

/* Áreas do Direito - Design Tech Futurista */
.areas {
    background: linear-gradient(180deg, var(--azul-escuro) 0%, #0a1428 100%);
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 !important;
}

.areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(214, 181, 106, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.areas-blocos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.area-bloco {
    background: linear-gradient(135deg, rgba(19, 48, 143, 0.2) 0%, rgba(8, 22, 60, 0.6) 100%);
    padding: 1.8rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(214, 181, 106, 0.15);
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.area-bloco.visible {
    opacity: 1;
    transform: translateY(0);
}

.area-bloco:nth-child(1) { transition-delay: 0.1s; }
.area-bloco:nth-child(2) { transition-delay: 0.2s; }
.area-bloco:nth-child(3) { transition-delay: 0.3s; }
.area-bloco:nth-child(4) { transition-delay: 0.4s; }

.area-bloco:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 181, 106, 0.4);
    box-shadow: 0 12px 30px rgba(214, 181, 106, 0.15);
}

.area-bloco.visible:hover {
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .areas-blocos {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .area-bloco {
        padding: 1.5rem 1.3rem;
    }
}

.area-bloco h3 {
    color: var(--branco);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    position: relative;
    z-index: 1;
}

.area-bloco h3::before {
    content: '';
    width: 3px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.area-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

.area-tag:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 0.425rem);
}

.area-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 0.9rem;
    border-radius: 12px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    cursor: pointer;
    text-align: center;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.area-tag .voice-icon {
    font-size: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.area-tag:hover .voice-icon {
    opacity: 1;
}

.area-tag:hover {
    background: rgba(214, 181, 106, 0.12);
    border-color: rgba(214, 181, 106, 0.4);
    transform: translateY(-3px);
    color: var(--branco);
}

.area-tag:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(28, 63, 174, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px) scale(1.03);
    color: var(--branco);
}

/* Tooltip */
.area-tooltip {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px) scale(0.95);
    background: linear-gradient(135deg, rgba(8, 22, 60, 0.98) 0%, rgba(19, 48, 143, 0.95) 100%);
    color: var(--branco);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
    white-space: normal;
    width: 300px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1.5px solid var(--dourado);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    font-weight: 400;
    text-align: left;
    backdrop-filter: blur(15px);
}

.area-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255, 255, 255, 0.2);
}

.area-tooltip-title {
    color: var(--branco);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.area-tag:hover .area-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}
@media (max-width: 768px) {
    .area-tags {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .area-tag {
        padding: 0.95rem 0.7rem;
        font-size: 0.88rem;
    }

    .area-tag .voice-icon {
        font-size: 0.95rem;
    }

    .area-tooltip {
        width: 260px;
        font-size: 0.82rem;
        padding: 0.9rem 1.2rem;
    }

    .area-tooltip-title {
        font-size: 0.88rem;
    }
}

.area-tooltip {
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(5px) scale(0.95);
    background: linear-gradient(135deg, rgba(8, 22, 60, 0.98) 0%, rgba(19, 48, 143, 0.95) 100%);
    color: var(--branco);
    padding: 1.2rem 1.6rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.6;
    white-space: normal;
    width: 320px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(255, 255, 255, 0.05) inset;
    z-index: 1000;
    font-weight: 400;
    text-align: left;
    backdrop-filter: blur(20px);
}

.area-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(214, 181, 106, 0.5);
}

.area-tooltip-title {
    color: var(--dourado);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .area-tags {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .area-tag {
        padding: 1rem 0.6rem;
        font-size: 0.85rem;
    }

    .area-tooltip {
        width: 280px;
        font-size: 0.8rem;
        padding: 1rem 1.3rem;
    }
}

/* Fundadora */
.fundadora {
    position: relative;
    overflow: hidden;
}

.fundadora::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--azul-escuro), var(--azul-base));
    z-index: 0;
}

.fundadora::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/andressa.jpg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(15px);
    opacity: 0.5;
    z-index: 1;
}

.fundadora .container {
    position: relative;
    z-index: 2;
}

.fundadora-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.fundadora-img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.fundadora-img:hover {
    transform: scale(1.02);
}

.fundadora-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.fundadora-texto p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--texto-secundario);
    margin-bottom: 2rem;
}

.fundadora-quote {
    background: rgba(214, 181, 106, 0.1);
    border-left: 5px solid var(--dourado);
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--branco);
    position: relative;
}

.fundadora-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--dourado);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.fundadora-assinatura {
    text-align: right;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--dourado);
}

.fundadora-bullets {
    list-style: none;
    margin: 2rem 0;
}

.fundadora-bullets li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Prova Social */
.prova-social {
    background: var(--azul-base);
}

.prova-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.prova-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--texto-secundario);
    position: relative;
}

.prova-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.15);
    opacity: 0.3;
    font-family: 'Cinzel', serif;
}

/* Planos */
.planos {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-vivo) 50%, var(--azul-base) 100%);
    position: relative;
    padding: 4rem 0 !important;
}

.planos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.plano-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.plano-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
}

.plano-card:hover::before {
    opacity: 1;
}

.plano-card.destaque {
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 60px rgba(28, 63, 174, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

.plano-card.destaque::before {
    opacity: 1;
}

.plano-badge {
    background: linear-gradient(135deg, var(--dourado) 0%, #e8c679 100%);
    color: var(--azul-escuro);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-weight: 700;
    font-size: 0.8rem;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    border-top: none;
}

.plano-titulo {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.plano-preco-wrapper {
    margin: 1rem 0 1rem;
}

.plano-preco-grande {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--branco);
    margin: 0;
    line-height: 1;
    font-family: 'Cinzel', serif;
}

.plano-preco-grande span {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.plano-mes {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.5rem;
    font-weight: 300;
}

.plano-desconto {
    background: var(--dourado);
    color: var(--azul-escuro);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    margin: 0.8rem 0 0.8rem;
    letter-spacing: 1px;
}

.plano-pagamento {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.plano-beneficios {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.plano-beneficios li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.plano-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, #F5D77A 0%, #D6B56A 50%, #B8924A 100%);
    color: var(--azul-escuro);
    border: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(214, 181, 106, 0.4);
    position: relative;
    overflow: hidden;
}

.plano-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 181, 106, 0.6);
    background: linear-gradient(135deg, #FDE799 0%, #F5D77A 50%, #D6B56A 100%);
}

/* Efeito shine no botão do plano destaque */
.plano-card.destaque .plano-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.plano-microcopy {
    font-size: 0.85rem;
    color: var(--texto-secundario);
    margin-top: 0.75rem;
}

.planos-seguranca {
    text-align: center;
    margin: 2rem 0 1.5rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--texto-secundario);
}

/* Garantia */
.garantia {
    background: linear-gradient(135deg, var(--azul-base) 0%, var(--azul-vivo) 100%);
    padding: 5rem 0;
}

.garantia-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.garantia-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.garantia-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dourado);
}

.garantia-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--branco);
}

.garantia-destaque {
    background: rgba(214, 181, 106, 0.15);
    border-left: 4px solid var(--dourado);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* FAQ */
.faq {
    background: var(--azul-escuro);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--branco);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.06);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--texto-secundario);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Footer */
footer {
    background: var(--azul-escuro);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-slogan {
    color: var(--texto-secundario);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--texto-secundario);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--dourado);
}

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--texto-secundario);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Sticky CTA Mobile */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 22, 60, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta .btn-primary {
    width: 100%;
    text-align: center;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 22, 60, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-base) 100%);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s ease;
}

.modal-header {
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--azul-escuro);
    z-index: 10;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--dourado);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--branco);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
}

.modal-body h3 {
    font-size: 1.5rem;
    color: var(--dourado);
    margin: 2rem 0 1rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

.modal-body ul, .modal-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.modal-body li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.modal-body strong {
    color: var(--dourado);
}

.modal-body a {
    color: var(--dourado);
    text-decoration: none;
    transition: opacity 0.3s;
}

.modal-body a:hover {
    opacity: 0.7;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .modal.active {
        padding: 0;
        align-items: flex-start;
    }

    .modal-content {
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}


/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

/* Responsivo */
@media (max-width: 1024px) {
    .fundadora-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fundadora-img-desktop {
        display: none;
    }

    .fundadora-img-mobile {
        display: block;
        margin: 2rem auto;
        max-width: 90%;
    }
}

@media (min-width: 1025px) {
    .fundadora-img-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 6rem 1.5rem 2rem;
    }

    .hero-bullets {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-bullet {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }

    .hero-ctas {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }

    .hero-credibility {
        gap: 0.8rem;
        flex-wrap: wrap;
        font-size: 0.85rem;
    }

    section {
        padding: 3rem 0;
    }

    .como-funciona-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mockup-container {
        order: 2;
    }

    .passos-grid {
        order: 1;
    }

    .passo-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .passo-texto h3 {
        text-align: center;
    }

    .passo-texto p {
        text-align: center;
    }

    .garantia-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .garantia-image {
        margin: 0 auto;
    }

    .garantia-content h2 {
        font-size: 2rem;
    }

    .passos-grid,
    .entregaveis-grid,
    .prova-grid {
        grid-template-columns: 1fr;
    }

    .planos-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .plano-card:nth-child(1) {
        order: 3;
    }

    .plano-card:nth-child(2) {
        order: 1;
    }

    .plano-card:nth-child(3) {
        order: 2;
    }

    .plano-card.destaque {
        transform: scale(1);
    }

    .plano-badge {
        top: -1px;
        font-size: 0.65rem;
        padding: 0.4rem 2rem;
        width: auto;
        max-width: 90%;
        white-space: nowrap;
        border: 2px solid white;
        border-top: none;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        border-radius: 0 0 15px 15px;
    }

    .plano-preco-grande {
        font-size: 2.8rem;
    }

    .plano-preco-grande span {
        font-size: 1.5rem;
    }

    .plano-mes {
        font-size: 1.2rem;
    }

    .plano-titulo {
        font-size: 1rem;
    }

    .plano-desconto {
        font-size: 0.95rem;
        padding: 0.4rem 1rem;
    }

    .planos-seguranca {
        margin: 1rem 0 1rem;
        gap: 0.8rem;
        font-size: 0.8rem;
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        display: none;
    }
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}
