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

body {
    font-family: 'Inter', sans-serif;
    background: #0E2340;
    color: #E8E6E3;
    line-height: 1.6;
}
/* Mobile-first: prevenir scroll lateral */
html, body {
    overflow-x: hidden;
}

/* Smooth scrolling for in-page anchors */
html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0E2340 0%, #1a3a5c 50%, #5B2E8A 100%);
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(199, 162, 74, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Branding */
.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.hero-logo {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 2px solid rgba(199, 162, 74, 0.6);
    box-shadow: 0 0 22px rgba(199, 162, 74, 0.35), 0 8px 24px rgba(0, 0, 0, 0.45);
    background: rgba(14, 35, 64, 0.65);
    object-fit: cover;
}

.hero-name {
    height: 46px;
    max-width: 360px;
    filter: drop-shadow(0 4px 16px rgba(199, 162, 74, 0.35));
    opacity: 0.95;
}

.symbol {
    font-size: 52px;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 0 0 25px rgba(199, 162, 74, 0.6);
    letter-spacing: 8px;
}

h1 {
    font-size: 3.5rem;
    color: #C7A24A;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(199, 162, 74, 0.4);
    letter-spacing: 2px;
}

.subheadline {
    font-size: 1.4rem;
    color: #B8B6B3;
    margin-bottom: 45px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #C7A24A 0%, #9d7d37 100%);
    color: #0E2340;
    padding: 20px 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(199, 162, 74, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 90vw;
    text-align: center;
    margin: 0 auto;
    white-space: normal;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(199, 162, 74, 0.5);
}

@media (max-width: 640px) {
    .hero-logo {
        width: 52px;
        height: 52px;
    }
    .hero-name {
        height: 36px;
    }
}

/* How it Works Section */
.how-it-works {
    background: #1a2d45;
    padding: 90px 20px;
}

.how-it-works h2 {
    font-size: 3rem;
    color: #C7A24A;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: 1px;
}

.flow-container {
    max-width: 1400px; /* Aumentado para acomodar 4 colunas */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas lado a lado */
    gap: 25px;
}

.flow-step {
    background: rgba(14, 35, 64, 0.7);
    border: 2px solid rgba(199, 162, 74, 0.25);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.flow-step:hover {
    border-color: rgba(199, 162, 74, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(91, 46, 138, 0.3);
}

.flow-step::after {
    content: '→';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #C7A24A;
    opacity: 0.6;
}

.flow-step:last-child::after {
    display: none;
}

.step-number {
    background: linear-gradient(135deg, #C7A24A 0%, #9d7d37 100%);
    color: #0E2340;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(199, 162, 74, 0.4);
}

.flow-step h3 {
    color: #C7A24A;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.flow-step p {
    color: #B8B6B3;
    font-size: 1rem;
    line-height: 1.7;
}

.highlight {
    color: #C7A24A;
    font-weight: 600;
}

/* About Section */
.about {
    background: #0E2340;
    padding: 90px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(199, 162, 74, 0.3);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    border-color: rgba(199, 162, 74, 0.6);
}

.about-content h2 {
    font-size: 2.8rem;
    color: #C7A24A;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Title TM (ico) */
h2.about-title {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
}

.title-ico {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(199, 162, 74, 0.6);
    box-shadow: 0 0 14px rgba(199, 162, 74, 0.35);
    transform: translateY(-8px);
    opacity: 0.95;
    background: rgba(14, 35, 64, 0.65);
}

@media (max-width: 640px) {
    .title-ico {
        width: 20px;
        height: 20px;
        transform: translateY(20px);
        transform: translateX(-12px);
    }
}

.about-content p {
    margin-bottom: 22px;
    color: #B8B6B3;
    font-size: 1.08rem;
    line-height: 1.8;
}
/* Brand below About title */
.about .hero-brand {
    justify-content: center;
    margin: 10px 0 20px;
}

.about .hero-logo {
    width: 60px;
    height: auto;
}

.about .hero-name {
    height: 36px;
    width: auto;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.credential-badge {
    background: rgba(91, 46, 138, 0.35);
    border: 1px solid rgba(199, 162, 74, 0.4);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    color: #C7A24A;
    font-weight: 500;
    transition: all 0.3s ease;
}

.credential-badge:hover {
    background: rgba(91, 46, 138, 0.5);
    border-color: rgba(199, 162, 74, 0.7);
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, #1a2d45 0%, #5B2E8A 100%);
    padding: 90px 20px;
}

.offer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.offer h2 {
    font-size: 3rem;
    color: #C7A24A;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.offer-subtitle {
    font-size: 1.3rem;
    color: #B8B6B3;
    margin-bottom: 60px;
    line-height: 1.6;
}

.offer-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin-top: 60px;
}

.offer-card {
    background: rgba(14, 35, 64, 0.85);
    border: 2px solid rgba(199, 162, 74, 0.3);
    border-radius: 18px;
    padding: 45px 35px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.offer-card.featured {
    border-color: #C7A24A;
    border-width: 3px;
    box-shadow: 0 0 50px rgba(199, 162, 74, 0.35);
}

.featured-badge {
    position: absolute;
    top: -18px;
    right: 25px;
    background: linear-gradient(135deg, #C7A24A 0%, #9d7d37 100%);
    color: #0E2340;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(199, 162, 74, 0.4);
}

.price-tag {
    background: rgba(91, 46, 138, 0.6);
    border-left: 5px solid #C7A24A;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.price {
    font-size: 2.3rem;
    color: #C7A24A;
    font-weight: 700;
}

.price-label {
    font-size: 0.95rem;
    color: #B8B6B3;
    margin-top: 5px;
}

.offer-card h3 {
    font-size: 2.2rem;
    color: #C7A24A;
    margin-bottom: 25px;
    text-align: center;
}

/* Brand inside offer cards */
.offer-card .hero-brand {
    justify-content: center;
    margin-bottom: 16px;
}

.offer-card .hero-logo {
    width: 44px;
    height: 44px;
}

.offer-card .hero-name {
    height: 32px;
}

.offer-card ul {
    list-style: none;
    margin: 30px 0;
}

.offer-card li {
    padding: 10px 0; /* diminuir espaçamento vertical */
    padding-left: 26px; /* estrela/cadeado mais próximo do nome */
    position: relative;
    color: #B8B6B3;
    font-size: 1rem;
    line-height: 1.6;
}

.offer-card li::before {
    content: '✦';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #C7A24A;
    font-size: 1rem;
}

.offer-card li.locked {
    opacity: 0.5;
}

.offer-card li.locked::before {
    content: '🔒';
    font-size: 1rem;
}

.faq {
    background: #0E2340;
    padding: 90px 20px;
}

.faq h2 {
    font-size: 2.8rem;
    color: #C7A24A;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(14, 35, 64, 0.75);
    border: 2px solid rgba(199, 162, 74, 0.25);
    border-radius: 15px;
    padding: 30px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(199, 162, 74, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.faq-item h3 {
    color: #C7A24A;
    font-size: 1.5rem;
    margin-bottom: 18px;
    line-height: 1.4;
}

.faq-item p {
    color: #B8B6B3;
    font-size: 1rem;
    line-height: 1.7;
}

.unlock-note {
    background: rgba(199, 162, 74, 0.15);
    border: 1px solid rgba(199, 162, 74, 0.4);
    padding: 18px;
    border-radius: 10px;
    margin: 25px 0;
    font-size: 0.95rem;
    color: #C7A24A;
    text-align: center;
    line-height: 1.6;
}

.interactive-bonus {
    background: linear-gradient(135deg, rgba(199, 162, 74, 0.25) 0%, rgba(91, 46, 138, 0.25) 100%);
    border: 2px solid #C7A24A;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.interactive-bonus h4 {
    color: #C7A24A;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.interactive-bonus p {
    color: #E8E6E3;
    font-size: 1rem;
    line-height: 1.7;
}

.cta-secondary {
    display: block;
    background: transparent;
    border: 2px solid #C7A24A;
    color: #C7A24A;
    padding: 16px 40px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.cta-secondary:hover {
    background: #C7A24A;
    color: #0E2340;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 162, 74, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: #1a2d45;
    padding: 90px 20px;
}

.testimonials h2 {
    font-size: 2.8rem;
    color: #C7A24A;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: rgba(14, 35, 64, 0.7);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #C7A24A;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #E8E6E3;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    color: #C7A24A;
    font-weight: 600;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    background: #0E2340;
    padding: 90px 20px;
}

.gallery h2 {
    font-size: 2.8rem;
    color: #C7A24A;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* Brand in gallery section */
.gallery .hero-brand {
    justify-content: center;
    margin-bottom: 16px;
}

.gallery .hero-logo {
    width: 52px;
    height: 52px;
}

.gallery .hero-name {
    height: 36px;
}

.gallery-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(199, 162, 74, 0.3);
    height: 600px; /* Define altura fixa */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esta é a propriedade que você procura! */
    object-position: center; /* Centraliza a imagem */
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer CTA */
.footer-cta {
    background: linear-gradient(135deg, #5B2E8A 0%, #0E2340 100%);
    padding: 90px 20px;
    text-align: center;
}

.footer-cta h2 {
    font-size: 3rem;
    color: #C7A24A;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-cta p {
    font-size: 1.3rem;
    color: #B8B6B3;
    margin-bottom: 45px;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #0a1628;
    padding: 35px 20px;
    text-align: center;
    color: #7a8a9e;
    font-size: 0.95rem;
}
/* Footer text: limitar largura e quebrar linhas no mobile */
footer p {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    white-space: normal;
    word-wrap: break-word;
}

/* Brand in footer */
footer .hero-brand {
    justify-content: center;
    margin-bottom: 12px;
}

footer .hero-logo {
    width: 56px;
    height: 56px;
}

footer .hero-name {
    height: 44px;
}

/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    .subheadline {
        font-size: 1.2rem;
    }

    .flow-container {
        grid-template-columns: 1fr; /* 1 coluna no mobile */
    }

    .flow-step::after {
        content: '↓'; /* Seta para baixo no mobile */
        right: auto;
        top: auto;
        bottom: -22px;
        left: 50%;
        transform: translateX(-50%);
    }

    .flow-step:last-child::after {
        display: none;
    }

    .about-grid,
    .offer-cards,
    .faq-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 50px 20px 70px;
    }
}
