:root {
    --primary: #2DB87A;
    --primary-dark: #1A7A4A;
    --secondary: #1A7A4A;
    --accent: #E8F5E9;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --success: #25D366; /* WhatsApp color */
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

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

.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.mt-4 { margin-top: 1rem; }

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 180, 216, 0.4);
}

.btn-next, .btn-submit {
    background: var(--primary);
    color: white;
}

.btn-prev {
    background: #E2E8F0;
    color: var(--text-dark);
}

.btn-next:hover, .btn-submit:hover {
    background: var(--primary-dark);
}

.btn-prev:hover {
    background: #CBD5E1;
}

/* 1. Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    color: var(--text-dark);
    padding: 3rem 0 10rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(45, 184, 122, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 3.5rem;
    z-index: 2;
    position: relative;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-shadow: none;
}

.logo-sub {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    color: var(--secondary);
    font-weight: 600;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    animation: slideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero h1 {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.2rem;
    color: #475569;
    line-height: 1.6;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

.bullet-icon {
    font-size: 1.25rem;
    background: rgba(45, 184, 122, 0.12);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(45, 184, 122, 0.25);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary-whatsapp {
    background: #FFFFFF;
    border: 1.5px solid rgba(45, 184, 122, 0.3);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.btn-secondary-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

/* Slider Antes / Depois */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(26, 122, 74, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
    background-color: #1a1a1a;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.image-clean {
    z-index: 1;
}

.image-dirty-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.image-dirty {
    width: 100%;
    max-width: none;
    height: 100%;
}

.slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: col-resize;
    z-index: 5;
    margin: 0;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    pointer-events: none;
    z-index: 4;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.slider-handle-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 3px solid var(--primary);
    color: var(--primary-dark);
}

.slider-handle-arrows svg {
    width: 14px;
    height: 14px;
}

.slider-label {
    position: absolute;
    bottom: 12px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.label-before {
    left: 12px;
}

.label-after {
    right: 12px;
}

.slider-instruction {
    font-size: 0.85rem;
    color: #475569;
    margin-top: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Floating Background Glowing Blobs for Immersion */
.bg-glow-blob {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    animation: floatBlob 15s infinite alternate ease-in-out;
}

.blob-green {
    background: radial-gradient(circle, var(--primary) 0%, rgba(45, 184, 122, 0.4) 70%);
    top: 15%;
    left: -120px;
}

.blob-teal {
    background: radial-gradient(circle, #00b4d8 0%, rgba(0, 180, 216, 0.4) 70%);
    top: 60%;
    right: -120px;
    animation-delay: -6s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -60px) scale(1.15); }
    100% { transform: translate(-40px, 100px) scale(0.9); }
}

/* 2. Social Proof & Slider */
.social-proof {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.social-proof .container {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stats-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-stars {
    font-size: 1.4rem;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Testimonials Carousel Wrapper */
.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0.5rem;
}

.testimonials-track {
    position: relative;
    height: 190px; /* Altura fixa confortável para evitar saltos de layout */
    width: 100%;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.quote-icon {
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(45, 184, 122, 0.15);
    line-height: 0;
    height: 10px;
    margin-top: 1.5rem;
}

.slide-stars {
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-meta .client-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
}

.testimonial-meta .client-city {
    font-size: 0.88rem;
    color: var(--text-light);
}

.testimonial-meta .client-city::before {
    content: '•';
    margin-right: 8px;
    color: rgba(0,0,0,0.2);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 1rem;
}

.slider-arrow {
    background: #ffffff;
    border: 1.5px solid rgba(45, 184, 122, 0.2);
    color: var(--primary-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(45, 184, 122, 0.2);
}

.slider-arrow:active {
    transform: translateY(0);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E2E8F0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 4px;
}

/* 3. Services */
.services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 3rem 2rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Sutil reflexo de gradiente no topo do card */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(45, 184, 122, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(45, 184, 122, 0.25);
    box-shadow: 0 20px 40px rgba(45, 184, 122, 0.08), 0 1px 3px rgba(45, 184, 122, 0.02);
}

/* Destaques de cores no hover específicos */
.service-card[data-service="sofa"]:hover { box-shadow: 0 20px 40px rgba(45, 184, 122, 0.12); }
.service-card[data-service="poltrona"]:hover { box-shadow: 0 20px 40px rgba(45, 184, 122, 0.12); }
.service-card[data-service="cadeiras"]:hover { box-shadow: 0 20px 40px rgba(45, 184, 122, 0.12); }
.service-card[data-service="colchao"]:hover { box-shadow: 0 20px 40px rgba(45, 184, 122, 0.12); }

.service-icon-wrapper {
    width: 84px;
    height: 84px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 184, 122, 0.06);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(45, 184, 122, 0.1);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(2deg);
    background: rgba(45, 184, 122, 0.12);
    border-color: rgba(45, 184, 122, 0.25);
    box-shadow: 0 8px 20px rgba(45, 184, 122, 0.08);
}

.service-icon-svg {
    width: 52px;
    height: 52px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon-svg {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 10px rgba(45, 184, 122, 0.15));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 700;
    z-index: 2;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 2;
}

.service-benefit {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(45, 184, 122, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    border: 1.5px solid rgba(45, 184, 122, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
    margin-bottom: 1.8rem;
}

.service-card:hover .service-benefit {
    background: var(--accent);
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* Chamada para ação inferior interna */
.service-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.8;
    z-index: 2;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.service-card:hover .service-cta {
    opacity: 1;
    color: var(--primary);
    border-color: var(--primary);
}

.service-cta svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-cta svg {
    transform: translateX(4px);
}


/* 4. Booking Wizard (Glassmorphism) */
.booking {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

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

.booking .section-title {
    color: white;
}

.booking .section-title::after {
    background: var(--accent);
}

.wizard-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.progress-step {
    width: 40px;
    height: 40px;
    background: #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    z-index: 2;
    transition: var(--transition);
}

.progress-step.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 5px rgba(0, 180, 216, 0.2);
}

.progress-line {
    flex: 1;
    height: 4px;
    background: #E2E8F0;
    margin: 0 10px;
    position: relative;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-step h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary);
}

.checkbox-group, .radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkbox-card, .radio-card {
    display: block;
    position: relative;
    padding: 1.5rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 600;
}

.checkbox-card input, .radio-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-card:hover, .radio-card:hover {
    border-color: var(--primary);
    background: rgba(0, 180, 216, 0.05);
}

.checkbox-card input:checked ~ .checkmark,
.radio-card input:checked ~ .radio-mark {
    background-color: var(--primary);
}

.checkbox-card input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-card:has(input:checked), .radio-card:has(input:checked) {
    border-color: var(--primary);
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.step-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.step-actions.split {
    justify-content: space-between;
}

/* 5. How it works */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
}

/* 6. Features */
.features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-content {
    max-width: 800px;
    margin: 0 auto;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list li {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.features-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
}

.check-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* 7. CTA Final */
.cta-final {
    padding: 6rem 0;
    background: var(--secondary);
    color: white;
    text-align: center;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.btn-whatsapp-large {
    background: var(--success);
    color: white;
    font-size: 1.25rem;
    padding: 1.2rem 3rem;
    border-radius: 40px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large .icon {
    margin-right: 10px;
}

/* 8. Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

footer h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 9. Floating WhatsApp Bot */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #128C7E;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-bullets {
        align-items: center;
        margin: 1.5rem 0 2rem;
    }
    .hero-bullets li {
        text-align: left;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        margin-top: 1rem;
    }
    .social-proof .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    .testimonials { flex-direction: column; }
    .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    h2.section-title { font-size: 2rem; }
    .hero h1 { font-size: 2.1rem; }
    .hero { padding: 2rem 0 7rem; }
    .before-after-slider {
        max-width: 100%;
    }
    .wizard-container { padding: 2rem 1.5rem; }
    .cta-final h2 { font-size: 2rem; }
}

/* ==========================================
   Chatbot & Conversão Estilos Premium (MEG)
   ========================================== */

/* Container do Chat Embutido (Embedded) na Página */
.chatbot-container.embedded-chat {
    width: 100%;
    max-width: 650px;
    margin: 2rem auto 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(45, 184, 122, 0.15);
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.chatbot-container.embedded-chat .chat-card {
    height: 520px;
}

/* Estrutura Unificada do Card do Chat */
.chat-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
}

/* Chat Header */
.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    color: white;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.chat-header-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.chat-header-text h3 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

.chat-header-text p {
    font-size: 0.8rem;
    color: var(--accent);
    margin: 2px 0 0 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-header-text p::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 8px #25D366;
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: var(--transition);
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Botão Recomeçar Chat com Estilo Premium */
.btn-reset-chat {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    font-family: inherit;
}

.btn-reset-chat:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-reset-chat:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.3);
}

.btn-reset-chat svg {
    transition: transform 0.4s ease;
}

.btn-reset-chat:hover svg {
    transform: rotate(-180deg);
}

@media (max-width: 480px) {
    .btn-reset-chat span {
        display: none; /* Oculta o texto em celulares super pequenos */
    }
    .btn-reset-chat {
        padding: 8px;
        border-radius: 50%;
        width: 34px;
        height: 34px;
        justify-content: center;
    }
}


/* Área de Mensagens */
.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: #F8FAFC;
    scroll-behavior: smooth;
}

/* Balões de Mensagem */
.message {
    display: flex;
    max-width: 88%;
    animation: fadeInMessage 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chat-message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
    border: 1.5px solid var(--primary);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

@keyframes fadeInMessage {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.message-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    margin-top: 4px;
    flex-shrink: 0;
}

.message-bubble {
    padding: 0.9rem 1.2rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
}

.bot-message {
    align-self: flex-start;
}

.bot-message .message-bubble {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid #E2E8F0;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.user-message .message-icon {
    margin-right: 0;
    margin-left: 8px;
}

.user-message .message-bubble {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 10px rgba(45, 184, 122, 0.15);
}

/* Formulário de Lead Embutido no Chat (Inline Form) */
.chat-inline-form {
    margin-top: 0.6rem;
    background: #ffffff;
    border: 1.5px solid rgba(45, 184, 122, 0.2);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: var(--shadow-md);
    width: 100%;
    animation: slideDownForm 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownForm {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-inline-form p.form-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-inline-form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-inline-form-field label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.chat-inline-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.chat-inline-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 184, 122, 0.1);
    background: #FDFDFD;
}

.chat-inline-form button.inline-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.4rem;
    box-shadow: 0 4px 6px rgba(45, 184, 122, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chat-inline-form button.inline-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(45, 184, 122, 0.25);
}

.chat-inline-form button.inline-submit:active {
    transform: translateY(0);
}

/* Botões de Resposta Rápida (Quick Replies) */
.quick-replies-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0.75rem 1.2rem;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    scrollbar-width: none; /* Firefox */
}

.quick-replies-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.quick-reply-chip {
    background: #ffffff;
    border: 1.5px solid var(--primary);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(45, 184, 122, 0.05);
    flex-shrink: 0;
}

.quick-reply-chip:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(45, 184, 122, 0.2);
}

.quick-reply-chip:active {
    transform: translateY(0);
}

/* Estilo Premium Destacado para o Chip de Localização */
.quick-reply-chip.location-chip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-dark);
    color: white !important;
    box-shadow: 0 4px 12px rgba(45, 184, 122, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    animation: locationPulse 2s infinite ease-in-out;
}

.quick-reply-chip.location-chip:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #154c33 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 184, 122, 0.35);
}

@keyframes locationPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(45, 184, 122, 0.25); }
    50% { box-shadow: 0 4px 20px rgba(45, 184, 122, 0.5); transform: scale(1.02); }
}

/* Indicador de Digitação (Typing Indicator) */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 0.4rem 0.6rem;
    align-items: center;
}

.typing-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.1); opacity: 1; }
}

/* Área de Input do Chat */
.chat-input-area {
    padding: 1rem 1.2rem;
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
}

.chat-form-element {
    display: flex;
    align-items: flex-end;
    background: #F1F5F9;
    border-radius: 28px;
    padding: 0.4rem 0.6rem 0.4rem 1.2rem;
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.chat-form-element:focus-within {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 184, 122, 0.1);
}

.chat-input-element {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.6rem 0;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    resize: none;
    max-height: 100px;
    outline: none;
    line-height: 1.4;
}

.chat-input-element::placeholder {
    color: #94A3B8;
}

.chat-send-element {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 8px;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(45, 184, 122, 0.2);
}

.chat-send-element:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(45, 184, 122, 0.3);
}

.chat-send-element svg {
    width: 18px;
    height: 18px;
    transform: translate(1px, 0);
}

/* Container do Botão Flutuante (Floating Chat) */
.floating-whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.floating-whatsapp {
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatButton 3s infinite ease-in-out;
    position: relative;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    background: #128C7E;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.chat-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #EF4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.chat-bubble-tip {
    position: absolute;
    right: 80px;
    background: #ffffff;
    color: var(--text-dark);
    padding: 0.7rem 1.2rem;
    border-radius: 16px;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    white-space: nowrap;
    border: 1px solid rgba(45, 184, 122, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: floatTip 3s infinite ease-in-out;
    pointer-events: none;
}

.chat-bubble-tip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

@keyframes floatButton {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatTip {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-4px); }
}

/* Chatbot Modal Overlay & Estilo Gaveta Mobile (Drawer) */
.chat-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.chat-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.chat-modal-content {
    width: 92%;
    max-width: 460px;
    height: 82vh;
    max-height: 720px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

.chat-modal-overlay.active .chat-modal-content {
    transform: translateY(0) scale(1);
}

/* Responsividade Mobile e Gaveta Deslizante (Bottom Drawer) */
@media (max-width: 768px) {
    .chatbot-container.embedded-chat {
        margin: 1.5rem 0 0;
        border-radius: 18px;
    }
    .chatbot-container.embedded-chat .chat-card {
        height: 480px;
    }
    
    /* Configuração do Modal como Gaveta (Drawer) no celular */
    .chat-modal-overlay {
        align-items: flex-end; /* Alinha o modal no rodapé da tela */
    }
    
    .chat-modal-content {
        width: 100%;
        max-width: 100%;
        height: 85vh; /* Ocupa a maior parte da tela de forma elegante */
        max-height: 100%;
        border-radius: 24px 24px 0 0; /* Apenas cantos superiores arredondados */
        transform: translateY(100%); /* Slide-up vindo de fora da tela */
        margin-bottom: 0;
    }
    
    .chat-modal-overlay.active .chat-modal-content {
        transform: translateY(0);
    }
    
    /* Indicador de Gaveta Arrastável (Drag Handle) no topo */
    .chat-modal-content::before {
        content: '';
        display: block;
        width: 40px;
        height: 5px;
        background: #CBD5E1;
        border-radius: 3px;
        margin: 8px auto;
        flex-shrink: 0;
    }
    
    .chat-header {
        padding: 0.8rem 1.2rem 1.2rem; /* Ajusta espaço por causa do drag-handle */
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .message {
        max-width: 90%;
    }
    
    .chat-inline-form {
        padding: 1rem;
    }
    
    .chat-inline-form input {
        font-size: 16px; /* Evita que o iOS dê zoom automático */
    }
    
    .chat-input-area {
        padding: 0.8rem 1rem 1.5rem; /* Mais espaço no rodapé para área segura de celulares */
    }
    
    .chat-bubble-tip {
        display: none; /* Esconde a tip flutuante em celulares para não cobrir outros botões */
    }
    
    .floating-whatsapp {
        width: 58px;
        height: 58px;
        bottom: 20px;
        right: 20px;
    }
}
