/*
Theme: Landing Page Maxicaixa - Caixa Pallet GLT
Arquivo: /lib/style.css
Descrição: Estilos principais da LP
*/

/* =========================================================
   Variáveis e estilos globais
========================================================= */

:root {
    --color-primary: #212529;
    --color-secondary: #007bff;
    --color-support: #0b672f;
    --color-text: #434141;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light: #f5f7fa;
    --color-border: #e4e7eb;
    --color-muted: #6c757d;
    --color-dark-blue: #0f2744;
    --color-dark: #111417;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--color-white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-secondary);
    transition: all 0.2s ease;
}

a:hover,
a:focus {
    color: var(--color-primary);
    text-decoration: none;
}

section {
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 18px;
}

h1 {
    font-size: 48px;
    letter-spacing: -1.2px;
}

h2 {
    font-size: 38px;
    letter-spacing: -0.8px;
}

h3 {
    font-size: 24px;
    letter-spacing: -0.3px;
}

p {
    margin-bottom: 18px;
}

.container {
    max-width: 1140px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-support);
    background-color: rgba(11, 103, 47, 0.08);
    border: 1px solid rgba(11, 103, 47, 0.16);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-tag-light {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.section-subtitle {
    color: var(--color-text);
    font-size: 19px;
    max-width: 760px;
    margin: 0 auto 48px;
}

.btn {
    border-radius: 9px;
    font-weight: 700;
    padding: 13px 24px;
    line-height: 1.2;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.btn-lg {
    padding: 16px 28px;
    font-size: 17px;
}

.btn-block {
    display: flex;
}

.btn-primary {
    color: var(--color-white);
    background: linear-gradient(135deg, #007bff 0%, #005ec2 55%, #0b672f 100%);
    border: none;
    box-shadow: 0 12px 28px rgba(0, 123, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--color-white);
    background: linear-gradient(135deg, #006fe6 0%, #0054ad 55%, #095827 100%);
    border: none;
    box-shadow: 0 16px 34px rgba(0, 123, 255, 0.28);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.84);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: var(--color-white);
    background: linear-gradient(135deg, #007bff 0%, #0b672f 100%);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-light {
    color: var(--color-primary);
    background-color: var(--color-white);
    border-color: var(--color-white);
}

.btn-light:hover,
.btn-light:focus {
    color: var(--color-secondary);
    background-color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* =========================================================
   Fundos escuros com textura
========================================================= */

.section-dark {
    color: rgba(255, 255, 255, 0.86);
    overflow: hidden;
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(0, 123, 255, 0.34), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(11, 103, 47, 0.34), transparent 28%),
        linear-gradient(135deg, #101820 0%, #0f2744 48%, #05080d 100%);
    z-index: 0;
}

.section-dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.44;
    z-index: 1;
    pointer-events: none;
}

.section-dark .container {
    position: relative;
    z-index: 2;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
    color: #ffffff;
}

.section-dark p,
.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.82);
}

.section-dark .check-list li {
    color: rgba(255, 255, 255, 0.92);
}

/* =========================================================
   Header
========================================================= */

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(228, 231, 235, 0.9);
    position: relative;
    top: auto;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(33, 37, 41, 0.04);
}

.header-nav {
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-brand {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-logo {
    max-width: 190px;
    width: 100%;
    height: auto;
    display: block;
}

.btn-header {
    font-size: 15px;
    padding: 12px 20px;
    white-space: nowrap;
}

/* =========================================================
   Hero
========================================================= */

.hero-section {
    background:
        radial-gradient(circle at 8% 12%, rgba(11, 103, 47, 0.12), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(0, 123, 255, 0.16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f2f8ff 46%, #eefaf3 100%);
    padding: 78px 0 68px;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.12), rgba(11, 103, 47, 0.14));
    z-index: 0;
}

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

.hero-content {
    padding-right: 28px;
}

.hero-content h1 {
    max-width: 640px;
    margin-bottom: 22px;
}

.hero-content p {
    font-size: 20px;
    color: var(--color-text);
    max-width: 600px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-muted);
    font-size: 15px;
    max-width: 600px;
}

.hero-note i {
    color: var(--color-support);
    margin-top: 4px;
}

.hero-image-box {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(0, 123, 255, 0.45), rgba(11, 103, 47, 0.36)) border-box;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 22px 60px rgba(33, 37, 41, 0.1);
    border: 1px solid transparent;
    max-width: 470px;
    margin-left: auto;
}

.hero-image {
    display: block;
    width: 100%;
    border-radius: 16px;
}

/* =========================================================
   Benefícios rápidos
========================================================= */

.quick-benefits {
    background-color: var(--color-white);
    padding: 32px 0 56px;
}

.quick-benefit-card {
    height: 100%;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 14px 36px rgba(33, 37, 41, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.quick-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(33, 37, 41, 0.1);
    border-color: rgba(0, 123, 255, 0.22);
}

.quick-benefit-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: linear-gradient(135deg, #007bff 0%, #0b672f 100%);
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 18px;
}

.quick-benefit-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.quick-benefit-card p {
    margin-bottom: 0;
    color: var(--color-text);
}

/* =========================================================
   Produto
========================================================= */

.product-section {
    padding: 90px 0;
}

.product-intro-row {
    margin-top: 10px;
}

.product-text {
    padding-right: 28px;
}

.product-text p {
    font-size: 18px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-weight: 600;
}

.check-list i {
    color: var(--color-support);
    margin-top: 5px;
}

.check-list-light i {
    color: #67d98d;
}

.product-image-card {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(0, 123, 255, 0.45), rgba(11, 103, 47, 0.36)) border-box;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    border: 1px solid transparent;
    max-width: 500px;
    margin-left: auto;
}

.product-image-card img {
    display: block;
    width: 100%;
    border-radius: 14px;
}

/* =========================================================
   Variações
========================================================= */

.variations-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 86px 0 62px;
}

.variation-card {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(33, 37, 41, 0.06);
    transition: all 0.2s ease;
}

.variation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(33, 37, 41, 0.1);
    border-color: rgba(0, 123, 255, 0.22);
}

.variation-image {
    background-color: #ffffff;
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-bottom: 1px solid rgba(228, 231, 235, 0.8);
}

.variation-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #ffffff;
}

.variation-content {
    padding: 26px;
    background-color: #ffffff;
}

.variation-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.variation-content p {
    margin-bottom: 0;
}

/* =========================================================
   CTA intermediário
========================================================= */

.mid-cta-section {
    background-color: var(--color-white);
    padding: 24px 0 76px;
}

.mid-cta-box {
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(135deg, #212529 0%, #0f2744 52%, #0b672f 100%);
    border-radius: 22px;
    padding: 44px 48px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 22px 58px rgba(33, 37, 41, 0.22);
}

.mid-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.45;
    z-index: 1;
}

.mid-cta-box::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: rgba(0, 123, 255, 0.22);
    z-index: 1;
}

.mid-cta-box h2,
.mid-cta-box p,
.mid-cta-box .btn {
    position: relative;
    z-index: 2;
}

.mid-cta-box h2,
.mid-cta-box p {
    color: var(--color-white);
}

.mid-cta-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.mid-cta-box p {
    margin-bottom: 0;
    opacity: 0.88;
    font-size: 18px;
}

/* =========================================================
   Institucional
========================================================= */

.company-section {
    background:
        radial-gradient(circle at 86% 16%, rgba(11, 103, 47, 0.12), transparent 28%),
        linear-gradient(180deg, #f5f7fa 0%, #eefaf3 100%);
    padding: 86px 0;
}

.company-image {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(0, 123, 255, 0.45), rgba(11, 103, 47, 0.36)) border-box;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 18px 46px rgba(33, 37, 41, 0.08);
    border: 1px solid transparent;
}

.company-image img {
    border-radius: 14px;
    width: 100%;
    display: block;
}

.company-content {
    padding-left: 38px;
}

.company-content p {
    font-size: 18px;
}

.company-differentials {
    margin-top: 54px;
}

.differential-card {
    height: 100%;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 32px rgba(33, 37, 41, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.differential-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(33, 37, 41, 0.1);
    border-color: rgba(0, 123, 255, 0.22);
}

.differential-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: linear-gradient(135deg, #0b672f 0%, #007bff 100%);
    border-radius: 12px;
    font-size: 21px;
    margin-bottom: 18px;
}

.differential-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.differential-card p {
    margin-bottom: 0;
}

/* =========================================================
   Orçamento
========================================================= */

.quote-section {
    padding: 90px 0;
}

.quote-row {
    margin-top: 8px;
}

.contact-box,
.form-box {
    height: 100%;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 16px 42px rgba(33, 37, 41, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-box {
    background:
        radial-gradient(circle at 88% 12%, rgba(0, 123, 255, 0.26), transparent 30%),
        linear-gradient(145deg, #212529 0%, #101820 58%, #0b672f 130%);
    color: rgba(255, 255, 255, 0.88);
    padding: 34px;
    border-color: rgba(255, 255, 255, 0.12);
}

.contact-box h3 {
    color: var(--color-white);
}

.contact-box p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: linear-gradient(135deg, #007bff 0%, #0b672f 100%);
    border-radius: 10px;
    font-size: 18px;
}

.contact-list strong {
    display: block;
    color: var(--color-white);
    margin-bottom: 2px;
}

.contact-list a,
.contact-list span {
    color: rgba(255, 255, 255, 0.82);
}

.contact-list a:hover {
    color: var(--color-white);
}

.b2b-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: rgba(11, 103, 47, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    border-radius: 14px;
    padding: 16px;
    font-weight: 600;
}

.b2b-warning i {
    margin-top: 4px;
    color: #67d98d;
}

.form-box {
    background-color: var(--color-white);
    padding: 34px;
}

.form-box h3 {
    margin-bottom: 24px;
}

.form-group label {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.form-control {
    min-height: 50px;
    color: var(--color-primary);
    border: 1px solid #d9dee5;
    border-radius: 9px;
    padding: 12px 15px;
    font-size: 16px;
}

.form-control:focus {
    color: var(--color-primary);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.14);
}

textarea.form-control {
    min-height: 132px;
    resize: vertical;
}

.form-disclaimer {
    color: var(--color-muted);
    font-size: 14px;
    text-align: center;
    margin: 16px 0 0;
}

/* =========================================================
   Footer
========================================================= */

.site-footer {
    background-color: #111417;
    color: rgba(255, 255, 255, 0.78);
    padding: 34px 0;
}

.footer-logo {
    max-width: 168px;
    margin-bottom: 16px;
}

.site-footer p {
    margin-bottom: 0;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
    color: var(--color-white);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-weight: 700;
}

/* =========================================================
   Thank You Page
========================================================= */

.thank-you-page {
    background-color: var(--color-white);
}

.thank-you-hero {
    background:
        radial-gradient(circle at 8% 14%, rgba(11, 103, 47, 0.12), transparent 30%),
        radial-gradient(circle at 92% 16%, rgba(0, 123, 255, 0.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f2f8ff 48%, #eefaf3 100%);
    padding: 76px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.thank-you-content {
    padding-right: 30px;
}

.thank-you-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 20px;
    max-width: 620px;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 22px;
}

.thank-you-image-box {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(0, 123, 255, 0.45), rgba(11, 103, 47, 0.36)) border-box;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 22px 60px rgba(33, 37, 41, 0.1);
    border: 1px solid transparent;
    max-width: 500px;
    margin-left: auto;
}

.thank-you-image {
    border-radius: 16px;
    width: 100%;
    display: block;
}

.thank-you-support {
    background:
        linear-gradient(180deg, #f5f9ff 0%, #eefaf3 100%);
    padding: 82px 0;
}

.support-contact-row {
    margin-top: 8px;
}

.support-contact-card {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(33, 37, 41, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.support-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(33, 37, 41, 0.1);
    border-color: rgba(0, 123, 255, 0.22);
}

.support-contact-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: linear-gradient(135deg, #0b672f 0%, #007bff 100%);
    border-radius: 12px;
    font-size: 21px;
    margin-bottom: 16px;
}

.support-contact-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.support-contact-card p,
.support-contact-card a {
    margin-bottom: 0;
    font-size: 15px;
}

.thank-you-address-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 12px 32px rgba(33, 37, 41, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.thank-you-address-box i {
    color: var(--color-support);
    font-size: 24px;
}

.thank-you-address-box p {
    margin-bottom: 0;
}

/* =========================================================
   Animações leves
========================================================= */

.animate-fade {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-image-box,
.product-image-card,
.thank-you-image-box {
    animation: softFloat 5.5s ease-in-out infinite;
}

@keyframes softFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================================================
   Botão flutuante WhatsApp
========================================================= */

.whatsapp-floating {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #0b672f 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    z-index: 1200;
    box-shadow: 0 16px 34px rgba(11, 103, 47, 0.32);
    animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-floating:hover,
.whatsapp-floating:focus {
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 42px rgba(11, 103, 47, 0.42);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42), 0 16px 34px rgba(11, 103, 47, 0.32);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 16px 34px rgba(11, 103, 47, 0.32);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 16px 34px rgba(11, 103, 47, 0.32);
    }
}

/* =========================================================
   Responsivo
========================================================= */

@media (max-width: 991.98px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .header-nav {
        min-height: 74px;
    }

    .header-logo {
        max-width: 165px;
    }

    .btn-header {
        padding: 10px 15px;
        font-size: 14px;
    }

    .hero-section {
        padding: 46px 0 58px;
    }

    .hero-content {
        padding-right: 0;
        margin-top: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-image-box,
    .product-image-card,
    .thank-you-image-box {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .quick-benefit-card,
    .differential-card {
        margin-bottom: 24px;
        height: auto;
    }

    .product-section,
    .variations-section,
    .company-section,
    .quote-section,
    .thank-you-support {
        padding: 68px 0;
    }

    .product-text {
        padding-right: 0;
        margin-bottom: 34px;
    }

    .company-content {
        padding-left: 0;
        margin-top: 34px;
    }

    .mid-cta-box {
        padding: 36px 30px;
    }

    .mid-cta-box .btn {
        margin-top: 22px;
    }

    .contact-box {
        margin-bottom: 28px;
    }

    .thank-you-hero {
        padding: 54px 0 66px;
    }

    .thank-you-content {
        padding-right: 0;
        margin-bottom: 34px;
    }

    .thank-you-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 34px;
        letter-spacing: -0.6px;
    }

    h2 {
        font-size: 28px;
        letter-spacing: -0.4px;
    }

    h3 {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 17px;
        margin-bottom: 34px;
    }

    .header-nav {
        min-height: 72px;
        gap: 12px;
    }

    .header-logo {
        max-width: 138px;
    }

    .btn-header {
        font-size: 13px;
        padding: 10px 13px;
    }

    .btn-header i {
        display: none;
    }

    .hero-section {
        padding: 34px 0 50px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-actions {
        display: block;
    }

    .hero-actions .btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .hero-image-box,
    .product-image-card,
    .thank-you-image-box {
        padding: 14px;
        border-radius: 16px;
        max-width: 390px;
    }

    .quick-benefits {
        padding: 20px 0 40px;
    }

    .quick-benefit-card,
    .differential-card,
    .form-box,
    .contact-box {
        padding: 24px;
    }

    .variation-image {
        height: 215px;
        background-color: #ffffff;
    }

    .mid-cta-section {
        padding-bottom: 58px;
    }

    .mid-cta-box {
        padding: 30px 24px;
        border-radius: 18px;
    }

    .mid-cta-box h2 {
        font-size: 27px;
    }

    .quote-section {
        padding: 66px 0;
    }

    .form-control {
        font-size: 15px;
    }

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

    .site-footer .text-md-right {
        text-align: center !important;
        margin-top: 24px;
    }

    .thank-you-content h1 {
        font-size: 36px;
    }

    .thank-you-content p {
        font-size: 17px;
    }

    .thank-you-actions {
        display: block;
    }

    .thank-you-actions .btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .thank-you-address-box {
        align-items: flex-start;
    }

    .whatsapp-floating {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .hero-image-box,
    .product-image-card,
    .thank-you-image-box {
        animation: none;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .btn-lg {
        padding: 14px 20px;
        font-size: 16px;
    }

    .hero-note {
        font-size: 14px;
    }

    .contact-list li {
        gap: 12px;
    }

    .contact-list i {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 16px;
    }
}

/* =========================================================
   Acessibilidade: menos movimento
========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .animate-fade,
    .hero-image-box,
    .product-image-card,
    .thank-you-image-box,
    .whatsapp-floating {
        animation: none;
        transition: none;
        transform: none;
    }
}