* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: #170326;
    color: #ffffff;
}

.top-header {
    width: 100%;
    background: #1b0730;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px clamp(16px, 4vw, 56px);
}

.top-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.top-brand,
.top-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(14px, 1.6vw, 28px);
    font-weight: 600;
    color: #ffffff;
}

.top-contact {
    font-size: clamp(14px, 1.2vw, 22px);
    font-weight: 500;
}

.top-brand-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff79d0 0%, #b548ff 100%);
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
}

.lp {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: linear-gradient(180deg, #200033 0%, #26053d 38%, #210234 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.section {
    width: 100%;
    padding: clamp(42px, 6vw, 68px) clamp(16px, 4vw, 56px);
}

.section-alt {
    background: rgba(10, 2, 18, 0.28);
}

.center {
    text-align: center;
}

.brand {
    margin: 0 0 16px;
    text-align: center;
    color: #f8d5ff;
    font-size: 12px;
}

h1,
h2 {
    margin: 0;
    line-height: 1.2;
}

h2 {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
}

/* Garante títulos sempre em bold mesmo com Tailwind */
h2 {
    font-weight: 800 !important;
}

h3 {
    margin: 0;
}

.lead {
    max-width: 760px;
    margin: 16px auto 0;
    font-size: 15px;
    line-height: 1.65;
    color: #ffffff;
    text-align: center;
}

.lead.small {
    max-width: 680px;
}

.hero-form {
    max-width: 430px;
    margin: 26px auto 0;
    padding: 18px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* Hero Section - Mobile First */
.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.hero-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.hero-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
    color: #ffffff;
    text-align: center;
}

.hero-highlight {
    color: #ff75cf;
    background: linear-gradient(135deg, #ff79d0 0%, #b548ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Esconde vídeo desktop no mobile */
.desktop-only {
    display: none;
}

/* Mostra vídeo mobile */
.mobile-only {
    display: block;
}

/* Video Section */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 4px;
    background: linear-gradient(135deg, #ff79d0 0%, #b548ff 40%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease;
}

.hero-video-wrapper:hover {
    transform: translateY(-4px);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 0;
    background: #000;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.video-overlay-content {
    text-align: center;
    color: #ffffff;
}

.play-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.video-overlay:hover .play-icon {
    transform: scale(1.1);
}

.video-overlay-text {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    color: #ff75cf;
    text-align: center;
}

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-description-text {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.hero-description-text strong {
    font-weight: 700;
    color: #ff75cf;
}

.hero-form input {
    width: 100%;
    border: 1px solid #dad5df;
    border-radius: 4px;
    padding: 11px 12px;
    font-size: 13px;
    margin-bottom: 10px;
    color: #2c1938;
}

.hero-form input::placeholder {
    color: #8f819d;
}

button,
.btn {
    display: inline-block;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, #be2cf7 0%, #f56bd4 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    padding: 11px 28px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(191, 44, 247, 0.35);
}

.section .btn {
    display: block;
    width: max-content;
    margin: 0 auto;
}

.hero-form button {
    width: 100%;
    margin-top: 4px;
}

.rel-section {
    padding-bottom: 72px;
}

.rel-cards {
    margin: 28px auto 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
}

.rel-card,
.quote-box,
.lessons p {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(228, 151, 255, 0.2);
    border-radius: 14px;
}

.rel-card {
    padding: 22px 20px;
    text-align: left;
}

.rel-card h3 {
    color: #ff7acb;
    font-size: 20px;
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.3;
}

.rel-card p {
    margin: 0;
    color: #e1cdee;
    font-size: 14px;
    line-height: 1.6;
}

.rel-card-large {
    max-width: 980px;
    margin: 6px auto 24px;
    text-align: center;
}

.rel-card-large h3 {
    font-size: 24px;
    line-height: 1.3;
}

.checklist {
    list-style: none;
    max-width: 900px;
    margin: 20px auto;
    padding: 0;
}

.checklist li {
    margin: 9px 0;
    padding-left: 22px;
    position: relative;
    color: #e6d4f3;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: #f572d8;
    font-weight: 700;
}

.quote-box {
    max-width: 900px;
    padding: 18px;
    margin: 20px auto 26px;
    color: #f1d8ff;
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.9fr);
    gap: 32px;
    align-items: center;
    max-width: 1020px;
    margin: 0 auto;
}

.section-split p {
    color: #ffffff;
    line-height: 1.7;
    margin: 18px 0 0;
    font-size: 14px;
}

.section-split h2 {
    text-align: left;
}

.problem-section h2 {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 16px;
}

.photo-placeholder {
    width: 100%;
    min-height: 260px;
    border-radius: 22px;
    background: radial-gradient(circle at 70% 30%, #f58ac8 0%, #61345e 42%, #291637 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lessons {
    max-width: 760px;
    margin: 24px auto;
    display: grid;
    gap: 10px;
}

.lessons p {
    margin: 0;
    padding: 13px 16px;
    text-align: left;
    color: #dfcfee;
}

.final-cta p {
    margin: 12px 0 28px;
    color: #dcc6ec;
}

.accent-text {
    color: #ff75cf;
    font-weight: 700;
}

.more-section .lead {
    margin-bottom: 32px;
}

.footer {
    padding: 24px 18px 30px;
    background: rgba(7, 0, 12, 0.45);
}

.lgpd-banner {
    max-width: 900px;
    margin: 0 auto 18px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(30, 4, 60, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lgpd-banner-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff79d0 0%, #b548ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.lgpd-banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.lgpd-banner-title {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
}

.lgpd-banner-subtitle {
    margin: 0;
    font-size: 12px;
    color: #c1a7e0;
}

.footer-meta {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #cab3dd;
}

/* =========
   FLOATING CTA - Mobile First
   ========= */

.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ff79d0 0%, #b548ff 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(191, 44, 247, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-float 2s ease-in-out infinite;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(191, 44, 247, 0.7);
}

.floating-cta:active {
    transform: translateY(-1px);
}

.floating-cta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.floating-cta-text {
    white-space: nowrap;
}

/* Animação sutil de pulso */
@keyframes pulse-float {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(191, 44, 247, 0.5);
    }
    50% {
        box-shadow: 0 8px 24px rgba(191, 44, 247, 0.8), 0 0 0 8px rgba(191, 44, 247, 0.1);
    }
}

/* =========
   MOBILE FIRST
   ========= */

/* Mobile First - Base styles já são mobile */

/* Tablets */
@media (min-width: 641px) {
    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .hero-description-text {
        font-size: 17px;
    }

    .btn-primary {
        font-size: 19px;
        padding: 18px 56px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .section.hero {
        padding-left: clamp(16px, 4vw, 56px);
        padding-right: clamp(16px, 4vw, 56px);
    }

    /* Esconde vídeo mobile, mostra vídeo desktop */
    .hero-inner .mobile-only {
        display: none !important;
    }

    .hero-inner .desktop-only {
        display: block !important;
    }

    .hero-inner {
        display: grid !important;
        grid-template-columns: 1.15fr 0.9fr !important;
        gap: 48px !important;
        align-items: center !important;
    }

    .hero-copy {
        text-align: left;
        gap: 24px;
    }

    .hero-title {
        font-size: 42px;
        text-align: left;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 32px;
        text-align: left;
    }

    .hero-description-text {
        font-size: 17px;
        text-align: left;
    }

    .hero-video-wrapper.desktop-only {
        max-width: 100%;
        width: 100%;
    }

    h2 {
        font-size: 32px;
    }

    .rel-card h3 {
        font-size: 22px;
    }

    .rel-card-large h3 {
        font-size: 28px;
    }

    /* Floating CTA Desktop - à DIREITA */
    .floating-cta {
        bottom: 30px;
        left: auto;
        right: 30px;
        padding: 16px 24px;
        font-size: 16px;
    }

    .floating-cta-icon {
        width: 22px;
        height: 22px;
    }
}

/* Mobile specific adjustments */
@media (max-width: 640px) {
    .top-header-inner {
        justify-content: center;
    }

    .top-brand,
    .top-contact {
        font-size: 14px;
    }

    .section {
        padding: 32px 16px;
    }

    .hero-container {
        gap: 24px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description-text {
        font-size: 15px;
    }

    .btn-primary {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }

    .play-icon {
        width: 60px;
        height: 60px;
    }

    .video-overlay-text {
        font-size: 14px;
    }

    .rel-cards {
        grid-template-columns: 1fr;
    }

    .rel-card h3 {
        font-size: 18px;
    }

    .rel-card-large h3 {
        font-size: 20px;
    }

    h2 {
        font-size: 20px;
    }

    .section-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section .btn {
        width: 100%;
        text-align: center;
    }

    .lgpd-banner {
        padding: 16px;
    }
}
