/* Basic Reset & Setup */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #0f0805;
    --accent-orange: #d96c2c;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --bg-light: #f4f4f4;
    --text-dark: #202020;
    --clt-red: #da291c;
    --guarantee-bg: #8c2a04;
    --price-green: #39b54a;
    --price-green-glow: rgba(57, 181, 74, 0.6);
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Classe para altura inicial */
body.hero-only {
    min-height: 100vh;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Typography Utilities */
.text-highlight {
    color: var(--accent-orange);
}

.text-clt-red {
    color: #ff3b3b;
}

.bold {
    font-weight: 700;
}

.bold-red {
    font-weight: 700;
    color: #ff3b3b;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('./public/background-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 1rem;
    overflow-x: hidden;
    overflow-y: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 40%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

@media (min-width: 992px) {
    .container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    align-items: flex-start;
}

h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    text-align: left;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
    padding: 0;
    max-width: 600px;
    text-align: left;
}

.video-container {
    width: 100%;
    max-width: 450px;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 0;
}

.video-container vturb-smartplayer {
    width: 100% !important;
    max-width: 100% !important;
    align-self: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================
   CLT REALITY SECTION
   ========================================= */
.clt-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 5rem 1rem 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #fbfbfb 0%, #f0f0f0 100%);
    width: 100%;
    max-width: 100vw;
}

.clt-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clt-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.clt-headline span {
    color: var(--clt-red);
}

.clt-subheadline {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .clt-headline {
        font-size: 2.25rem;
    }
}

.clt-visuals {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto -20px auto;
    position: relative;
    display: flex;
    justify-content: center;
}

.clt-hero-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.7) 60%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    padding-bottom: 2rem;
}

.card-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    margin-bottom: 0.5rem;
}

.card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff3b3b, #b91c1c);
    box-shadow: 0 -2px 10px rgba(255, 59, 59, 0.5);
}

/* =========================================
   STORY SECTION
   ========================================= */
.story-section {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.story-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .story-container {
        grid-template-columns: 1fr 1fr;
    }

    .story-section.reverse .story-content {
        order: 2;
    }

    .story-section.reverse .story-image-wrapper {
        order: 1;
    }
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-headline {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
}

.story-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    text-align: left;
}

.story-text p {
    margin-bottom: 1rem;
}

.story-text span {
    color: var(--clt-red);
    font-weight: 700;
}

.story-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.story-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

/* =========================================
   TRANSFORMATION SECTION
   ========================================= */
.transformation-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.transformation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 108, 44, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.transformation-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .transformation-container {
        grid-template-columns: 1fr 1fr;
    }
}

.transformation-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transformation-headline {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
}

@media (min-width: 768px) {
    .transformation-headline {
        font-size: 2.25rem;
    }
}

.transformation-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    text-align: left;
}

.transformation-text p {
    margin-bottom: 1rem;
}

.transformation-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.transformation-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* =========================================
   STEPS SECTION
   ========================================= */
.steps-section {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 4rem 1rem 6rem 1rem;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.steps-container {
    max-width: 1100px;
    margin: 0 auto;
}

.steps-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 3rem;
    line-height: 1.3;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .steps-headline {
        font-size: 2.25rem;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: transparent;
    border: 2px dashed #d0d0d0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.step-label {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ff3b3b;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.step-img-wrapper {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.step-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    text-align: left;
}

/* =========================================
   GUARANTEE SECTION 
   ========================================= */
.guarantee-section {
    background: radial-gradient(circle at 30% 50%, #b3420b 0%, #682302 100%);
    color: #ffffff;
    padding: 5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.guarantee-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .guarantee-container {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.guarantee-seal-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-seal {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .guarantee-content {
        text-align: left;
    }
}

.guarantee-headline {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .guarantee-headline {
        font-size: 2.25rem;
    }
}

.guarantee-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-text p {
    margin-bottom: 1rem;
}

.guarantee-highlight {
    font-weight: 700;
    color: #ffffff;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
    background-color: #0b0b0b;
    color: #fff;
    padding: 5rem 1rem;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-old {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}

.price-strike {
    color: #ff3b3b;
    text-decoration: line-through;
    font-weight: 600;
}

.price-main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .price-main-wrapper {
        flex-direction: row;
        gap: 1rem;
        align-items: baseline;
    }
}

.price-label {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.cta-button {
    background: linear-gradient(180deg, #4ade5a 0%, #2f943d 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    padding: 1.5rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--price-green-glow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #4ade5a;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

@media (min-width: 768px) {
    .cta-button {
        font-size: 1.25rem;
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--price-green-glow);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 0 1rem;
    }

    .hero-section {
        background-position: center top;
        padding: 2rem 0.5rem;
    }

    h1 {
        font-size: 1.5rem;
        text-align: left !important;
    }

    .subheadline {
        text-align: left !important;
        margin: 0;
    }

    .content-left {
        align-items: flex-start !important;
        max-width: 100%;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.8) 0%,
                rgba(0, 0, 0, 0.6) 60%,
                rgba(0, 0, 0, 0.8) 100%);
    }

    .story-headline {
        text-align: center;
        font-size: 1.75rem;
    }

    .story-text {
        text-align: justify;
    }

    .story-container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .story-image-wrapper {
        order: -1;
        width: 100%;
        padding: 0;
        margin-bottom: 1rem;
    }

    .story-img {
        max-width: 100%;
    }

    .story-section.reverse .story-image-wrapper {
        order: -1;
    }

    .transformation-container {
        grid-template-columns: 1fr;
    }

    .transformation-image-wrapper {
        order: -1;
        width: 100%;
        padding: 0;
        margin-bottom: 1rem;
    }

    .transformation-img {
        max-width: 100%;
    }

    .transformation-headline {
        text-align: center;
    }

    .transformation-text {
        text-align: center;
    }

    .steps-headline {
        font-size: 1.5rem;
    }

    .guarantee-container {
        grid-template-columns: 1fr;
    }

    .guarantee-seal-wrapper {
        margin-bottom: 1rem;
    }

    .guarantee-seal {
        max-width: 100%;
    }

    .price-value {
        font-size: 3rem;
    }

    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 1.25rem 2rem;
    }

    .clt-section,
    .story-section,
    .steps-section,
    .guarantee-section,
    .pricing-section,
    .transformation-section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .clt-container,
    .story-container,
    .steps-container,
    .guarantee-container,
    .pricing-container,
    .transformation-container {
        padding: 0 0.5rem;
    }

    .clt-visuals {
        max-width: 100%;
        margin: 0 auto 1rem auto;
        overflow: hidden;
    }

    .clt-hero-img {
        width: 100%;
        max-width: 100%;
        transform: scale(1.15);
    }
}