:root {
    --bg-dark: #050505;
    --accent-blue: #0056FF;
    --accent-blue-glow: rgba(0, 86, 255, 0.4);
    --text-white: #FFFFFF;
    --text-dim: #A0A0A0;
    --card-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 3rem;
    z-index: 100;
}

.logo {
    font-weight: 850;
    font-size: 1.2rem;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-blue);
}

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

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.cta-nav {
    background: var(--accent-blue);
    color: #FFF;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    transition: transform 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: url('img/layout_full.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 2px solid var(--accent-blue);
}

.hero-hotspot {
    position: absolute;
    left: 25.3%;
    top: 57%;
    background: #0056FF;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: 3px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 0 25px rgba(0, 86, 255, 0.5);
    text-transform: uppercase;
}

.hero-hotspot:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(0, 86, 255, 0.7);
}

/* Ticker */
.ticker-wrap {
    background: #000;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    padding: 20px 0;
    overflow: hidden;
}

.ticker {
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    display: inline-block;
}

.ticker span {
    font-size: 1.1rem;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Problems Section */
.problems {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 950;
    margin-bottom: 80px;
    letter-spacing: -2px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.problem-card {
    background: var(--accent-blue);
    padding: 36px 28px;
    border-radius: 20px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 80%;
    height: 180%;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(25deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.problem-card:hover::after {
    left: 120%;
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 86, 255, 0.5);
}

.card-icon-box {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.card-icon-box i {
    font-size: 2rem;
    color: #FFF;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 950;
    color: #FFF;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 0;
    font-style: italic;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.highlight-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 70px;
    color: #FFF;
    letter-spacing: 0.5px;
    background: transparent !important;
    line-height: 1.6;
    text-transform: uppercase;
}

.highlight-text strong {
    color: var(--accent-blue);
    font-weight: 950;
}

/* Benefits Section (Novo) */
.benefits {
    padding: 120px 0;
    background-color: #000;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quote-area {
    position: relative;
    padding-left: 4rem;
}

.quote-mark {
    font-size: 15rem;
    color: var(--accent-blue);
    position: absolute;
    top: -8rem;
    left: -2rem;
    opacity: 0.6;
    filter: blur(2px) drop-shadow(0 0 30px var(--accent-blue));
    line-height: 1;
    font-family: serif;
}

.quote-area p {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.quote-area strong {
    color: #FFF;
    font-weight: 900;
}

.benefit-title {
    font-size: 2.5rem;
    font-weight: 950;
    margin-bottom: 40px;
    text-transform: lowercase;
}

.benefit-title .blue {
    color: var(--accent-blue);
    text-transform: lowercase;
}

.benefit-list {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    background: #080808;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
}

.benefit-item h4 {
    color: var(--accent-blue);
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Modules & Offer */
.modules {
    padding: 100px 0;
    text-align: center;
}

.modules-intro img {
    width: 100%;
    max-width: 1000px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 60px rgba(0, 86, 255, 0.2));
}

/* Why Us Section (Novo) */
.why-us {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 86, 255, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.why-layout {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-title {
    font-size: 2.2rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.why-title .blue {
    color: var(--accent-blue);
}

.why-subtitle {
    color: var(--text-dim);
    margin-bottom: 40px;
    font-weight: 600;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.why-item-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.why-item-small i {
    font-size: 1.8rem;
    color: var(--accent-blue);
    background: rgba(0, 86, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.why-item-small h4 {
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #FFF;
}

.why-item-small p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.why-image img {
    width: 110%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 80px rgba(0, 86, 255, 0.2));
}

.offer {
    padding: 100px 0;
    text-align: center;
}

.offer-container-relative {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 1100px;
}

.full-offer-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 100px rgba(0, 86, 255, 0.35));
}

.offer-hotspot {
    position: absolute;
    left: 1%;
    top: 43%;
    transform: none;
    background: #0056FF;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: 1.5px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
    box-shadow: 0 0 25px rgba(0, 86, 255, 0.5);
    text-transform: uppercase;
    white-space: nowrap;
}

.offer-hotspot:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(0, 86, 255, 0.7);
}

/* Footer Moderno */
footer {
    padding: 6rem 0;
    border-top: 1px solid #111;
    background: #000;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.whatsapp-support {
    background: #000;
    color: #FFF;
    text-decoration: none;
    font-weight: 900;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #222;
    transition: all 0.3s;
}

.whatsapp-support i {
    color: #25D366;
    font-size: 1.4rem;
}

.whatsapp-support:hover {
    border-color: var(--accent-blue);
    transform: scale(1.05);
}

@media (max-width: 968px) {

    .benefits-layout,
    .why-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .quote-mark {
        font-size: 8rem;
        top: -4rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .quote-area {
        padding-left: 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image img {
        width: 100%;
    }
}

/* About Section */
.about-samuel {
    padding: 120px 0;
    background: linear-gradient(to bottom, #050505, #080808);
}

.about-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 86, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-samuel:hover .about-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 86, 255, 0.2), transparent 60%);
    pointer-events: none;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 950;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.about-title .blue {
    color: var(--accent-blue);
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.highlight-quote {
    font-size: 1.4rem !important;
    color: #FFF !important;
    font-weight: 800;
    font-style: italic;
    border-left: 4px solid var(--accent-blue);
    padding-left: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

@media (max-width: 968px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-title {
        font-size: 2.4rem;
    }

    .highlight-quote {
        text-align: left;
        font-size: 1.2rem !important;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =============================================
   ANIMAÇÕES DE SCROLL (Fade-in)
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

/* =============================================
   HOVER E MICRO-ANIMAÇÕES
   ============================================= */
.cta-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 86, 255, 0.5);
}

.problem-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(0, 86, 255, 0.15);
}

.benefit-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(6px);
    box-shadow: -4px 0 20px rgba(0, 86, 255, 0.2);
}

.why-item-small {
    transition: transform 0.3s ease;
}

.why-item-small:hover {
    transform: translateY(-4px);
}

.why-item-small i {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.why-item-small:hover i {
    background: rgba(0, 86, 255, 0.25);
    box-shadow: 0 0 15px rgba(0, 86, 255, 0.3);
}

/* Pulsação nos botões CTA */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 25px rgba(0, 86, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 45px rgba(0, 86, 255, 0.85);
    }
}

.hero-hotspot,
.offer-hotspot {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

/* Ticker texto visível */
.ticker span {
    color: #555;
}

/* =============================================
   RESPONSIVIDADE MOBILE
   ============================================= */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        position: relative;
        left: 0;
        transform: none;
        padding: 1rem 1.5rem;
        background: #000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-links {
        display: none;
        /* Esconde links extras no mobile para manter o layout original */
    }

    .logo {
        font-size: 1rem;
    }

    .cta-nav {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }

    /* Hero - mantém proporção exata da imagem do layout */
    .hero {
        height: 0;
        padding-bottom: 70.25%;
        /* Proporção 16:9 exata da imagem layout_full.png */
        background-size: 185% 100%;
        background-position: center top;
        display: block;
        position: relative;
        min-height: auto;
        border-bottom: 2px solid var(--accent-blue);
        overflow: visible;
    }

    .hero-hotspot {
        position: absolute;
        left: 4%;
        top: 57%;
        width: 40%;
        height: 12%;
        font-size: clamp(5px, 1.5vw, 12px);
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0;
        border-radius: 1.5vw;
        transform: none;
        white-space: nowrap;
        gap: 0.3rem;
    }

    .hero-hotspot .arrow {
        display: none;
    }

    /* Sections padding */
    .problems,
    .benefits,
    .why-us {
        padding: 80px 0;
    }

    .modules,
    .offer {
        padding: 60px 0;
    }

    .offer .container {
        padding: 0 10px;
        /* Reduz o padding para aumentar a área */
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: -1px;
        margin-bottom: 50px;
    }

    /* Problems */
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        padding: 40px 28px;
    }

    /* Highlight text */
    .highlight-text {
        font-size: 1.1rem;
    }

    /* Benefits */
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .quote-mark {
        font-size: 8rem;
        top: -4rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .quote-area {
        padding-left: 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-item-small {
        align-items: center;
        text-align: center;
    }

    .why-image img {
        width: 100%;
    }

    /* About Section Mobile */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

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

    .highlight-quote {
        text-align: left;
        font-size: 1.2rem !important;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Offer */
    .offer-container-relative {
        display: block;
        /* revert flex */
        padding-bottom: 0;
        container-type: inline-size;
        overflow: hidden;
        border-radius: 12px;
    }

    .full-offer-img {
        width: 115%;
        /* Diminui o corte para 15% apenas à direita */
        margin-left: 0;
        /* Garante que o texto BÔNUS na esquerda não seja cortado */
        height: auto;
        display: block;
        max-width: none;
    }

    .offer-hotspot {
        position: absolute;
        left: 2.3%;
        top: 42.3%;
        width: 36.8%;
        /* 32% * 1.15 */
        max-width: none;
        margin-top: 0;
        font-size: 1.9cqw;
        /* 1.7 * 1.15 = 1.955 */
        padding: 1.3cqw 1cqw;
        letter-spacing: 0.05cqw;
        border-radius: 1.3cqw;
        white-space: normal;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1.2;
    }

    /* Footer */
    footer {
        padding: 3rem 0;
    }

    .footer-layout {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .logo {
        font-size: 1.1rem;
    }
}
