.elementor-162 .elementor-element.elementor-element-5455b5e{--display:flex;--min-height:0px;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:stretch;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--flex-wrap:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-162 .elementor-element.elementor-element-5455b5e.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-162 .elementor-element.elementor-element-5455b5e{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-2a19946 */:root {
    /* Colors */
    --primary-green: #538524;
    --light-green: #62C406;
    --medium-green: #759F49;
    --accent-gold: #D5A551;
    --purple-cleanse: #9468BE;
    --bg-ice-green: #EAEEE7;
    --bg-white: #FFFFFF;
    --text-main: #363636;
    --text-dark: #2A2A2A;
    --text-light: #666666;
    --border-neutral: #D4D4D5;

    /* Gradients */
    --cta-gradient: linear-gradient(98deg, var(--primary-green) 0%, var(--light-green) 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Spacing */
    --container-max-width: 1140px;
    --section-padding-hero: 110px 0 120px 0;
    --section-padding: 80px 0;
    --gap: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Layout Containers (Elementor-style) */
.e-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 15px;
}

.e-row {
    display: flex;
    width: 100%;
    gap: var(--gap);
}

.e-col {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* General Styles */

/* Typography & Components */
h1,
h2,
h3 {
    color: var(--primary-green);
    font-weight: 700;
}

.label-badge {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
    padding: 8px 18px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.heading-hero {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0.7px;
    margin-bottom: 25px;
    font-weight: 400;
}

.heading-hero span.weight-normal {
    font-weight: 400;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-neutral);
    margin: 20px 0;
}

.body-text {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 30px;
}

/* Checklist */
.checklist {
    list-style: none;
    margin-bottom: 35px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    margin-bottom: 12px;
}

.checklist li svg {
    width: 22px;
    height: 22px;
    fill: var(--medium-green);
}

/* CTA Button */
.btn-cta {
    display: inline-block;
    background-image: var(--cta-gradient);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 80px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0px 11px 25px -6px rgba(72, 149, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0px 15px 30px -5px rgba(72, 149, 0, 0.8);
}

.btn-cta.pulsante {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(117, 159, 73, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(117, 159, 73, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(117, 159, 73, 0);
    }
}

/* Glassmorphism Form */
.capture-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid #E1E1E1;
    border-radius: 10px;
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Sections */
.section-hero {
    position: relative;
    background-color: var(--bg-ice-green);
    background-image: url('https://detoxinbox.com.br/wp-content/uploads/2026/04/G9A5G9A5.jpg');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: -500px;
    padding: var(--section-padding-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(234, 238, 231, 1) 0%,
            rgba(234, 238, 231, 1) 35%,
            rgba(234, 238, 231, 0.6) 55%,
            rgba(234, 238, 231, 0) 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.section-hero .e-container {
    z-index: 2;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.reflexo {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s;
}

.reflexo:hover {
    transform: scale(1.02) translateY(-10px);
}

/* Intl-Tel-Input Custom Styles */
.iti {
    width: 100% !important;
    margin-bottom: 15px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel] {
    width: 100% !important;
    padding-left: 95px !important;
    height: 48px;
    font-family: var(--font-primary);
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #E1E1E1;
    box-sizing: border-box;
    background: white;
    transition: border-color 0.3s;
}

.iti__flag-container {
    z-index: 1;
}

.iti input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(83, 133, 36, 0.2);
}

/* --- MOBILE RESPONSIVE (MOVE TO BOTTOM) --- */
@media (max-width: 767px) {
    .section-hero {
        padding: 40px 15px !important;
        text-align: center !important;
        background-image: url('https://detoxinbox.com.br/wp-content/uploads/2026/04/AS26FAS2F6A.jpg') !important;
        background-position: center top !important;
        background-size: cover !important;
        min-height: 100vh !important;
        height: auto !important;
        display: block !important;
    }

    .section-hero::before {
        background: linear-gradient(0deg,
                rgba(234, 238, 231, 1) 0%,
                rgba(234, 238, 231, 0.8) 40%,
                rgba(234, 238, 231, 0.4) 60%,
                rgba(234, 238, 231, 0) 100%);
    }

    .e-container {
        padding: 0 15px !important;
    }

    .e-row {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .hero-content {
        padding-top: 25vh !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .divider,
    .body-text,
    .checklist {
        display: none !important;
    }

    /* Reordena: título → badge → form */
    .heading-hero {
        order: 1 !important;
    }

    .label-badge {
        order: 2 !important;
        display: inline-block !important;
        align-self: center !important;
        font-size: 13px !important;
        padding: 6px 14px !important;
        margin-top: 0 !important;
        margin-bottom: 15px !important;
    }

    .capture-form {
        order: 3 !important;
    }

    .heading-hero {
        font-size: 24px !important;
        line-height: 1.2 !important;
        margin-bottom: 25px !important;
        color: #2D4619 !important;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 5px rgba(255, 255, 255, 0.5) !important;
    }

    .capture-form {
        margin: 0 auto !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(10px) !important;
        padding: 25px 20px !important;
        border-radius: 15px !important;
    }

    .form-group {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .btn-cta {
        padding: 18px 20px !important;
        font-size: 16px !important;
    }
}/* End custom CSS */