/**
 * Hero Section - Base Styles
 * Estilos compartilhados entre todas as variantes
 */

.sslp-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 10rem 0 3rem 0;
}

.sslp-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.sslp-hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.sslp-hero .sslp-container {
    position: relative;
    z-index: 2;
}

.sslp-hero__content {
    max-width: 700px;
}

.sslp-hero__content--center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sslp-hero__content--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
}

.sslp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sslp-hero__badge-icon {
    font-size: 1rem;
}

.sslp-hero__title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem) !important;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1.5rem;
}

/* Mobile Logo - ESCONDIDO (já tem no header) */
.sslp-hero__mobile-logo {
    display: none !important;
}

/* Highlight/Circle Animation */
.sslp-hero__highlight {
    display: inline;
    padding: 0.1em 0.25em;
    border-radius: 50% 45% 55% 50% / 60% 50% 50% 40%;
    box-shadow: inset 0 0 0 0 #9CA846;
    transition: box-shadow 0.5s ease-out;
}

.sslp-hero__highlight.is-active {
    box-shadow: inset 0 0 0 2.5px #9CA846;
}

@keyframes draw-path {
    to { stroke-dashoffset: 0; }
}

.sslp-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 600px;
}

.sslp-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sslp-hero__content--center .sslp-hero__actions {
    justify-content: center;
}

.sslp-hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.sslp-hero__stat {
    text-align: left;
}

.sslp-hero__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.sslp-hero__stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Video elements */
.sslp-hero__video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    aspect-ratio: 16/9;
}

.sslp-hero__video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sslp-hero__video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Rating */
.sslp-hero__rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sslp-hero__stars {
    display: flex;
    gap: 4px;
}

.sslp-hero__rating-text {
    font-size: 0.9rem;
}

/* Testimonial card */
.sslp-hero__testimonial-card {
    padding: 2rem;
    border-radius: 16px;
}

.sslp-hero__testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: -1rem;
}

.sslp-hero__testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.sslp-hero__testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sslp-hero__testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.sslp-hero__testimonial-name {
    display: block;
    font-weight: 600;
}

.sslp-hero__testimonial-location {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Countdown */
.sslp-hero__countdown {
    display: flex;
    gap: 0.5rem;
}

.sslp-hero__countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    min-width: 50px;
}

.sslp-hero__countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.sslp-hero__countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sslp-hero__countdown-sep {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
}

/* Urgency bar */
.sslp-hero__urgency-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 0;
    z-index: 10;
}

.sslp-hero__urgency-bar .sslp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* Scarcity */
.sslp-hero__scarcity {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.sslp-hero__scarcity-bar {
    height: 10px;
    border-radius: 5px;
    overflow: visible;
    margin-bottom: 0.5rem;
}

.sslp-hero__scarcity-fill {
    height: 100%;
    border-radius: 5px;
}

.sslp-hero__scarcity-text {
    font-size: 0.9rem;
}

/* Price urgency */
.sslp-hero__price-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sslp-hero__price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.sslp-hero__price-new {
    font-size: 2.5rem;
    font-weight: 800;
}

.sslp-hero__price-discount {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Live viewers */
.sslp-hero__live-viewers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.sslp-hero__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Wizard steps */
.sslp-hero__wizard-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.sslp-hero__wizard-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sslp-hero__wizard-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Quiz teaser */
.sslp-hero__quiz-teaser {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.sslp-hero__quiz-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sslp-hero__quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sslp-hero__quiz-option {
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

/* Tabs */
.sslp-hero__tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.sslp-hero__tab {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
}

/* Comparison */
.sslp-hero__comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.sslp-hero__comparison-item {
    padding: 1.5rem;
    border-radius: 12px;
}

.sslp-hero__comparison-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.sslp-hero__comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sslp-hero__comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

/* Video Layout - Two Column */
.sslp-hero__with-video {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

.sslp-hero__video-wrapper {
    position: relative;
    z-index: 2;
}

.sslp-hero__video-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    background: transparent;
}

.sslp-hero__video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.sslp-hero__video-thumb {
    position: relative;
    cursor: pointer;
}

.sslp-hero__video-thumb img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.sslp-hero__video-thumb .sslp-hero__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.sslp-hero__video-thumb .sslp-hero__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.sslp-hero__video-thumb .sslp-hero__play-btn svg {
    color: var(--sslp-primary, #b8860b);
    margin-left: 4px;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .sslp-hero {
        padding: 4.5rem 0 1rem;
        min-height: auto;
        overflow: visible;
    }

    .sslp-hero__with-video {
        display: block;
    }

    .sslp-hero__content {
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .sslp-hero--variant-a .sslp-hero__badge {
        margin-top: 1.875rem;
    }

    .sslp-hero__badge {
        margin: 0 auto 0.75rem;
        font-size: 0.7rem !important;
        padding: 0.35rem 0.7rem !important;
        white-space: nowrap;
    }

    .sslp-hero__title {
        font-size: 1.6rem !important;
        line-height: 1.2;
    }

    .sslp-hero__subtitle {
        margin: 1rem 0;
    }

    .sslp-hero__subtitle {
        font-size: 0.95rem;
    }

    .sslp-hero__actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        width: 100%;
    }

    .sslp-hero__actions .sslp-btn {
        flex: 1 1 0 !important;
        padding: 0.375rem !important;
        font-size: 0.8125rem !important;
        text-align: center;
        white-space: nowrap;
    }

    .sslp-hero__actions .sslp-btn svg {
        display: none !important;
    }

    .sslp-hero__stats {
        overflow: visible;
        margin: 0 -1rem;
        padding: 0.5rem 0;
        mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    }

    .sslp-hero__stats-track {
        display: flex;
        gap: 4rem;
        width: max-content;
        animation: marquee-scroll 12s linear infinite;
    }

    .sslp-hero__stat {
        text-align: center;
        flex-shrink: 0;
        min-width: 7rem;
    }

    @keyframes marquee-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 2rem)); }
    }

    .sslp-hero__actions {
        justify-content: center;
    }

    .sslp-hero__urgency {
        justify-content: center;
    }

    .sslp-hero__video-wrapper {
        margin-top: 1.5rem;
        width: 100%;
    }

    .sslp-hero__video-container {
        width: 100%;
        border-radius: 12px;
        overflow: visible;
    }

    .sslp-hero__video {
        width: 100%;
        height: auto;
        display: block;
    }

    .sslp-hero__sound-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        bottom: 0.5rem;
        left: 0.5rem;
    }
}

/* Urgency Text */
.sslp-hero__urgency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    animation: pulse-subtle 2s ease-in-out infinite;
}

.sslp-hero__urgency-icon {
    font-size: 1.1rem;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Video Sound Control */
.sslp-hero__sound-btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.sslp-hero__sound-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.05);
}

.sslp-hero__sound-icon {
    font-size: 1.1rem;
}

.sslp-hero__sound-text {
    font-weight: 500;
}

.sslp-hero__video-container {
    position: relative;
}

/* Hero Logo */
.sslp-hero__logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .sslp-hero__logo {
        max-width: 140px;
        margin-bottom: 1rem;
    }
}
