/* 
   DUB Design – Style Sheet
   HydroCustom Design System
*/

/* =========================================================
   TOKENS / VARIÁVEIS
   ========================================================= */
:root {
    --primary:           #09ecd9;
    --primary-hover:     #07d4c2;
    --primary-dim:       rgba(9, 236, 217, 0.12);
    --black:             #000000;
    --white:             #ffffff;
    --surface:           #f7f9f9;
    --border:            #e4e9e8;
    --text:              #0d1515;
    --text-muted:        #5e6e6c;
    --gray-footer:       #9eaaa8;
    --gradient-premium:  linear-gradient(135deg, #f7cf44 0%, #e8bc1c 100%);

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body:    'Manrope', sans-serif;

    --r-sm:   4px;
    --r-md:   8px;
    --r-lg:   16px;
    --r-xl:   24px;
    --r-pill: 9999px;

    --sp-xs: 4px;
    --sp-sm: 8px;
    --sp-md: 16px;
    --sp-lg: 24px;
    --sp-xl: 48px;
    --sp-2xl:80px;

    --container: 1280px;
    --header-h:  76px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.display-lg {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.headline-md {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--sp-sm);
}

.headline-sm {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--sp-xs);
}

.body-lg {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
}

.body-md {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.body-sm {
    font-size: 13px;
    line-height: 1.5;
}

.label-bold {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-primary { color: var(--primary); }
.text-white   { color: var(--white); }
.text-gray    { color: var(--gray-footer); }
.text-muted   { color: var(--text-muted); }
.mb-sm        { margin-bottom: var(--sp-sm); }
.mb-md        { margin-bottom: var(--sp-md); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 26px;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    transition: background 0.3s, color 0.3s, transform 0.25s, border-color 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

/* Ícone SVG dentro dos botões */
.btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}
.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* Glow específico: botão do header */
#nav-cta:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow:
        0 0 0 3px rgba(0, 0, 0, 0.08),
        0 0 20px rgba(0, 0, 0, 0.22),
        0 4px 16px rgba(0, 0, 0, 0.30);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 13px 8px;
}
.btn-ghost:hover { color: var(--text-muted); }

.btn-sm {
    padding: 9px 18px;
    font-size: 13px;
}

/* =========================================================
   BADGES
   ========================================================= */
.badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.badge-premium {
    background: var(--gradient-premium);
    color: var(--black);
}

.badge-absolute {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--sp-sm);
}

/* Tagline invertida: fundo verde neon + texto preto */
#produtos .section-label,
#como-funciona .section-label,
#personalize .section-label,
#depoimentos .section-label,
#localizacao .section-label {
    background: var(--primary);
    color: var(--black);
    padding: 4px 14px;
    border-radius: var(--r-pill);
    box-shadow:
        0 0 8px rgba(9, 236, 217, 0.70),
        0 0 20px rgba(9, 236, 217, 0.45),
        0 0 40px rgba(9, 236, 217, 0.20);
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.header-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-h);
    gap: var(--sp-md);
}

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

/* No footer (fundo preto), inverte a logo para branco */
.logo-img--footer {
    filter: brightness(0) invert(1);
    height: 32px;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--sp-lg);
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Overlay escuro sobre a foto para legibilidade */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 15, 14, 0.65) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
}

.hero-content {
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content .badge { margin-bottom: var(--sp-md); }

.hero-content .display-lg {
    color: var(--white);
    margin-bottom: var(--sp-md);
}

.hero-content .body-lg {
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--sp-xl);
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: var(--sp-md);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* Botão outline branco para uso sobre fundo escuro */
.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 13px 26px;
    border-radius: var(--r-md);
    font-size: 14px;
    font-weight: 700;
    transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.25s;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
}

/* Glow específico: botão de orçamento no hero — fundo verde + glow teal */
#hero-cta-orcamento:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--black);
    box-shadow:
        0 0 0 4px rgba(9, 236, 217, 0.20),
        0 0 28px rgba(9, 236, 217, 0.45),
        0 6px 20px rgba(9, 236, 217, 0.30);
    transform: translateY(-2px);
}

/* =========================================================
   TRUST BAR (INFO STRIP)
   ========================================================= */
.trust-bar {
    background: var(--black);
    padding: 36px 0;
}

.trust-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 200px;
}

.trust-icon {
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(9, 236, 217, 0.4));
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    font-family: var(--font-heading);
    text-shadow: 0 0 10px rgba(9, 236, 217, 0.35);
}

.trust-desc {
    color: #e0e0e0;
    font-size: 13px;
    line-height: 1.4;
}

/* =========================================================
   FEATURES
   ========================================================= */
.features {
    background: var(--surface);
    padding: 60px 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-xl) var(--sp-lg);
    transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.feature-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--primary-dim);
    color: var(--black);
    margin-bottom: var(--sp-md);
    box-shadow:
        -4px -4px 10px rgba(255, 255, 255, 0.9),
         4px  4px 12px rgba(9, 236, 217, 0.18);
    transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover .feature-icon-box {
    box-shadow:
        -2px -2px 6px rgba(255, 255, 255, 0.9),
         4px  4px 16px rgba(9, 236, 217, 0.32);
    transform: scale(1.06);
}

/* CTA da seção de diferenciais */
.features-cta-wrap {
    text-align: center;
    margin-top: var(--sp-xl);
}

#features-cta:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--black);
    box-shadow:
        0 0 0 4px rgba(9, 236, 217, 0.20),
        0 0 28px rgba(9, 236, 217, 0.45),
        0 6px 20px rgba(9, 236, 217, 0.30);
    transform: translateY(-2px);
}

/* =========================================================
   PRODUCT SHOWCASE
   ========================================================= */
.showcase {
    padding: var(--sp-2xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--sp-xl);
}

.section-header .body-lg { color: var(--text-muted); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}

.product-card {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(9,236,217,0.12);
}

.product-img-container {
    position: relative;
    background: var(--surface);
    padding: var(--sp-md);
}

.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: var(--r-md);
    background: var(--white);
}

.product-info {
    padding: var(--sp-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info .headline-sm { margin-bottom: 4px; }

.product-footer {
    margin-top: auto;
    padding-top: var(--sp-lg);
}

.product-footer .btn { width: 100%; justify-content: center; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-it-works {
    background: var(--black);
    padding: var(--sp-2xl) 0;
    color: var(--white);
}

.how-it-works .section-header { color: var(--white); }
.how-it-works .section-header .body-lg { color: var(--gray-footer); }
.how-it-works .section-header .headline-md { color: var(--white); }

.process-wrapper {
    display: flex;
    flex-direction: column;
}

.steps-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    overflow: hidden;
    background: transparent;
}

.step-card-new {
    padding: var(--sp-lg) var(--sp-md);
    text-align: center;
    border-right: 1px dashed rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-card-new:last-child {
    border-right: none;
}

.step-header {
    margin-bottom: var(--sp-md);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
    width: 100%;
}

.step-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.step-number-new {
    font-size: 48px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.step-icon {
    color: var(--primary);
    margin-bottom: var(--sp-md);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.step-desc {
    color: var(--white);
    font-size: 13px;
    line-height: 1.5;
}

/* Etapa Destaque (Etapa 3) */
.step-highlight {
    background: var(--primary);
    border-right: none;
}
.step-highlight .step-label,
.step-highlight .step-number-new,
.step-highlight .step-title,
.step-highlight .step-desc,
.step-highlight .step-icon {
    color: var(--black);
}
.step-highlight .step-header {
    border-bottom-color: rgba(0, 0, 0, 0.2);
}
.step-card-new:has(+ .step-highlight) {
    border-right: none;
}

.step-pointer {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    z-index: 10;
}

/* Banner Informativo Layout */
.layout-banner {
    background: var(--primary);
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    padding: var(--sp-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-lg);
    position: relative;
    z-index: 5;
}

.layout-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--black);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    border-right: 1px dashed rgba(0, 0, 0, 0.15);
    padding-right: var(--sp-lg);
}
.layout-item:last-child {
    border-right: none;
    padding-right: 0;
}

.layout-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =========================================================
   CUSTOMIZATION CTA
   ========================================================= */
.customization {
    background: var(--surface);
    padding: var(--sp-2xl) 0;
}

.customization-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.customization-content .headline-md { margin-bottom: var(--sp-md); }

.customization-content .body-lg {
    color: var(--text-muted);
    margin-bottom: var(--sp-lg);
}

.customization-list {
    list-style: none;
    margin-bottom: var(--sp-xl);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.customization-list li {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--black);
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(9, 236, 217, 0.4);
}

.rounded-img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    border-radius: var(--r-xl);
    transform: scale(1.35);
    transform-origin: center center;
}

/* =========================================================
   TESTIMONIALS (PROVA SOCIAL)
   ========================================================= */
.testimonials {
    padding: var(--sp-2xl) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--sp-lg);
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-lg);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(9, 236, 217, 0.12);
    border-color: var(--primary);
}

.testimonial-stars {
    color: #fbbc04; /* Amarelo Google */
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: var(--sp-sm);
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    flex: 1;
    margin-bottom: var(--sp-md);
}

.testimonial-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

/* =========================================================
   LOCATION (MAPA)
   ========================================================= */
.location {
    padding: var(--sp-2xl) 0;
    background: var(--surface);
}

.map-container {
    width: 100%;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366; /* Verde Oficial do WhatsApp */
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background-color: #20BA56;
}

.floating-whatsapp .btn-icon {
    width: 32px;
    height: 32px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--black);
    padding: 64px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--sp-xl);
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    display: block;
    margin-bottom: var(--sp-md);
    font-size: 22px;
}

.footer-brand .body-md { color: var(--gray-footer); max-width: 320px; }

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
}

.footer-link {
    color: var(--gray-footer);
    font-size: 14px;
    transition: color 0.2s;
}
.footer-link:hover { color: var(--primary); }

.footer-contact .body-md { color: var(--gray-footer); }

.footer-social {
    display: flex;
    gap: var(--sp-sm);
    margin-top: var(--sp-md);
}

.social-link {
    padding: 6px 14px;
    border-radius: var(--r-pill);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}
.social-link:hover {
    background: var(--primary);
    color: var(--black);
}

.footer-bottom {
    text-align: center;
    padding: var(--sp-md) 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .customization-container {
        grid-template-columns: 1fr;
        gap: var(--sp-xl);
    }

    .rounded-img { height: 380px; }

    .steps-grid-6 {
        grid-template-columns: repeat(3, 1fr);
        border-radius: var(--r-lg) var(--r-lg) 0 0;
    }
    .step-card-new {
        border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    }
    .step-card-new:nth-child(3n) {
        border-right: none;
    }
    
    .layout-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    .layout-item:nth-child(2n) {
        border-right: none;
        padding-right: 0;
    }

    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .features-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --sp-2xl: 52px;
        --sp-xl: 36px;
    }

    /* Mobile nav */
    .nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--sp-lg);
        border-bottom: 1px solid var(--border);
        gap: var(--sp-md);
        z-index: 190;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav.nav-open { display: flex; }
    .nav-toggle { display: flex; }

    .hero { padding-top: var(--sp-xl); }
    .hero-img { height: 300px; }

    .features-container { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .steps-grid-6 { grid-template-columns: 1fr; }
    .step-card-new {
        border-right: none;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    }
    .step-pointer { display: none; } /* Oculta o ponteiro pois a quebra de linha muda o alinhamento */
    
    .layout-banner { grid-template-columns: 1fr; }
    .layout-item {
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
        padding-right: 0;
        padding-bottom: var(--sp-md);
    }
    .layout-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Trust Bar Mobile Scroll */
    .trust-bar-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px; /* Espaço para não cortar letras */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .trust-bar-container::-webkit-scrollbar {
        display: none; /* Oculta a barra de rolagem no Chrome/Safari */
    }
    
    .trust-bar-container {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .trust-item {
        min-width: 260px; /* Largura mínima para cada item no mobile */
        scroll-snap-align: start;
    }

    .footer-container { grid-template-columns: 1fr; gap: var(--sp-lg); }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-actions .btn,
    .hero-actions .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
}
