/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #E5E7EB;
    background-color: #020617;
}

/* LAYOUT GERAL */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    color: #f9fafb;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    flex: 1;
    min-height: 100vh;
}

.hero-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.9));
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 4rem 0;
}

.hero-content {
    max-width: 640px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.1rem;
    margin-bottom: 1.5rem;

    /* Visual de destaque */
    background: rgba(15, 23, 42, 0.92);
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);

    /* Tipografia */
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.9rem;
    font-weight: 700;
    color: #E5E7EB;
}

.hero-subtitle {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.05rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #cbd5f5;
    background: rgba(15, 23, 42, 0.7);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    backdrop-filter: blur(6px);
}

/* HERO CARD */
.hero-card {
    position: absolute;
    right: 2rem;
    bottom: 3rem;
    width: 320px;
    background: rgba(15, 23, 42, 0.92);
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
}

.hero-card-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a5b4fc;
}

.hero-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e5e7eb;
}

.hero-card-list {
    list-style: none;
    font-size: 0.9rem;
    color: #cbd5f5;
    margin: 0.5rem 0 1.5rem;
}

.hero-card-list li::before {
    content: "•";
    color: #a5b4fc;
    margin-right: 0.4rem;
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s ease-in-out;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #22c55e);
    color: #f9fafb;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.55);
}

.btn-outline {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.9);
}

.btn-secondary {
    background: #0f172a;
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-secondary:hover {
    background: #020617;
}

.btn-icon {
    margin-left: 0.1rem;
}

/* SEÇÕES GERAIS */
.content-section {
    padding: 5rem 0;
    background: #020617;
    color: #e5e7eb;
}

.content-section.alt-bg {
    background: #020617;
}

.content-section.dark-bg {
    background: radial-gradient(circle at top, #020617, #020617);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #F9FAFB;
}

.section-subtitle {
    color: #9ca3af;
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.98rem;
}

/* STORY */
.story-content {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

.story-image img {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.9);
    object-fit: cover;
}

/* MÓDULOS */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.module-card {
    background: #020617;
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.8);
}

.module-card h3 {
    margin-bottom: 0.75rem;
}

.module-card p {
    color: #9ca3af;
}

/* DIFERENCIAIS */
.diferencial-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: center;
}

.diferencial-image img {
    width: 100%;
    border-radius: 1.4rem;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.9);
    object-fit: cover;
}

.diferencial-list {
    list-style: none;
    display: grid;
    gap: 1.2rem;
}

.diferencial-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.diferencial-list svg {
    flex-shrink: 0;
    color: #4ade80;
}

/* GALERIA */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    border-radius: 1.2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* O QUE ESTÁ INCLUSO */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.included-item {
    background: #020617;
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.8);
}

.included-item h3 {
    margin-bottom: 0.75rem;
}

.included-item p {
    color: #9ca3af;
}

/* GARANTIA */
.guarantee-section {
    background: radial-gradient(circle at top, #0b1120, #020617);
}

.guarantee-card {
    max-width: 720px;
    margin: 0 auto;
    background: #020617;
    border-radius: 1.5rem;
    padding: 2.25rem;
    border: 1px solid rgba(74, 222, 128, 0.4);
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.9);
    text-align: center;
}

/* PRICING */
.pricing-section {
    background: #020617;
}

.pricing-card {
    max-width: 720px;
    margin: 0 auto;
    background: #020617;
    border-radius: 1.5rem;
    padding: 2.5rem 2.75rem;
    border: 1px solid rgba(129, 140, 248, 0.6);
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.95);
    text-align: center;
}

.price-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: #818cf8;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e5e7eb;
}

.price-installment {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* CTA FINAL */
.final-cta-section {
    background: radial-gradient(circle at top, #111827, #020617);
    padding-bottom: 5rem;
}

.final-cta-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content p {
    color: #d1d5db;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .hero-card {
        position: static;
        margin-top: 2rem;
        width: 100%;
    }
    
    .hero-content-wrapper {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
    
    .hero-section {
        min-height: auto;
    }
    
    .diferencial-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-content-wrapper {
        padding-top: 4.5rem;
    }
    
    .hero-card {
        margin-top: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-content .story-text,
    .diferencial-list {
        text-align: left;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.7rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
}
