/* --- Base, Variables, Reset --- */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Previne scroll horizontal geral */
    max-width: 100vw; /* Garante que o body não exceda a largura da viewport */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --honda-red: #E40521;
    --honda-red-darker: #c4041c;
    --bg-light-primary: #f8f9fa; /* Cinza muito claro (quase branco) */
    --bg-light-secondary: #ffffff; /* Branco puro */
    --bg-dark-primary: #1a1a1a; /* Preto suave */
    --bg-dark-secondary: #2a2a2a; /* Cinza bem escuro */
    --text-light-primary: #f1f1f1; /* Texto branco/cinza claro para fundos escuros */
    --text-light-secondary: #adb5bd; /* Texto cinza médio para fundos escuros */
    --text-dark-primary: #212529; /* Texto quase preto para fundos claros */
    --text-dark-secondary: #495057; /* Texto cinza escuro para fundos claros */
    --border-light: #e0e0e0; /* Borda clara para fundos brancos */
    --border-dark: rgba(255, 255, 255, 0.1); /* Borda clara para fundos escuros */
    --accent-blue: #0d6efd; /* Azul */
    --accent-gold: #ffc107; /* Dourado/Amarelo */
    --accent-green: #198754; /* Verde (para confirmação) */
    --whatsapp-green: #25D366; /* Verde WhatsApp */
    --whatsapp-green-dark: #128C7E; /* Verde WhatsApp mais escuro */
    --google-red: #d93025; /* Vermelho Google */
    --google-red-darker: #c5221f;
    --google-blue: #1a73e8; /* Azul Google */
    --google-star-gold: #ff9800; /* Amarelo estrela Google */
    --youtube-red: #FF0000; /* Vermelho YouTube */

    --font-primary: 'Poppins', sans-serif; /* Fonte títulos, botões */
    --font-secondary: 'Roboto', sans-serif; /* Fonte corpo de texto */

    --header-height-desktop: 80px;
    --header-height-mobile: 70px;
    --bottom-nav-height: 65px; /* Altura da barra inferior mobile */

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-pill: 50px; /* Para botões arredondados */

    --transition-speed-fast: 0.2s;
    --transition-speed-normal: 0.3s;
    --transition-speed-slow: 0.5s;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 3px 6px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 15px 30px rgba(0, 0, 0, 0.15);

    --gradient-red: linear-gradient(45deg, var(--honda-red), #ff416c);
    --gradient-dark: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark-primary));
    --gradient-light: linear-gradient(135deg, var(--bg-light-secondary), var(--bg-light-primary));
    --gradient-whatsapp: linear-gradient(45deg, var(--whatsapp-green), var(--whatsapp-green-dark));
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%; /* Previne ajuste automático de fonte no iOS */
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-light-secondary); /* Fundo base BRANCO */
    color: var(--text-dark-primary); /* Texto principal ESCURO */
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Padding inferior para compensar a barra de navegação fixa no mobile */
    padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
    transition: padding-bottom var(--transition-speed-normal) ease;
}

/* Classe para bloquear scroll quando modais/menus estão abertos */
body.no-scroll {
    overflow: hidden;
}

main {
    overflow: hidden; /* Evita overflow de animações */
}

a {
    text-decoration: none;
    color: var(--honda-red);
    transition: color var(--transition-speed-fast) ease;
}
a:hover {
    color: var(--honda-red-darker);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark-primary); /* Títulos escuros por padrão */
    margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2.5rem, 6vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--text-dark-secondary); /* Parágrafos cinza escuro */
}

ul, ol { list-style: none; padding: 0; margin: 0; }

/* Lista com Ícones (usada em várias seções) */
.feature-list {
    list-style: none; padding-left: 0; margin: 1.5rem 0;
}
.feature-list li {
    position: relative; padding-left: 28px; margin-bottom: 12px;
    font-size: 1rem; color: var(--text-dark-secondary); /* Texto padrão escuro */
}
.feature-list li::before {
    content: '\f058'; /* Font Awesome Check Circle Solid */
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--honda-red); /* Ícone vermelho por padrão */
    font-size: 1.1em; position: absolute; left: 0; top: 2px;
}
/* Variação para listas em fundo escuro */
.bg-dark .feature-list li,
.philosophy-section .feature-list li,
.about-section .feature-list li {
    color: var(--text-light-secondary); /* Texto claro em fundo escuro */
}
.bg-dark .feature-list li::before { color: var(--honda-red); } /* Ícone continua vermelho */
.philosophy-section .feature-list li::before { color: var(--honda-red); }
.about-section .feature-list li::before { color: var(--accent-gold); } /* Ícone dourado na seção Sobre */


img, video { max-width: 100%; height: auto; display: block; }

button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; background: none; padding: 0; margin: 0; }
button { cursor: pointer; }

/* Blockquotes (Citações / Depoimentos) */
blockquote {
    background-color: var(--bg-light-primary); /* Fundo cinza claro */
    border-left: 5px solid var(--honda-red);
    margin: 20px 0; padding: 15px 25px; font-style: italic; position: relative;
}
blockquote::before { /* Aspas decorativas */
    content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 2.5rem; color: var(--honda-red); opacity: 0.1;
    position: absolute; left: 15px; top: 10px;
}
blockquote p { margin-bottom: 10px; padding-left: 10px; color: var(--text-dark-secondary); }
blockquote footer { text-align: right; font-style: normal; font-weight: 600; color: var(--text-dark-primary); font-size: 0.95rem; margin-top: 10px; }
blockquote footer::before { content: "— "; }

/* --- Utility Classes --- */
.container { width: 90%; max-width: 1280px; margin: 0 auto; padding: 0 15px; }
.section { padding: clamp(60px, 10vw, 100px) 0; position: relative; overflow: hidden; }

.section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 60px); position: relative; z-index: 2; }
.section-header .section-subtitle { color: var(--honda-red); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; display: block; }
.section-header .section-title { color: var(--text-dark-primary); margin-bottom: 1rem; }
.section-header .section-description { max-width: 750px; margin-left: auto; margin-right: auto; color: var(--text-dark-secondary); font-size: 1.05rem; line-height: 1.7; }

.bg-white { background-color: var(--bg-light-secondary); }
.bg-light-gray { background-color: var(--bg-light-primary); } /* Alias */
.bg-dark { background: var(--gradient-dark); color: var(--text-light-primary); } /* Fundo escuro */
.bg-gradient-light { background: var(--gradient-light); }

/* Estilos específicos para elementos em fundo escuro */
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6 { color: var(--text-light-primary); }
.bg-dark p, .bg-dark li { color: var(--text-light-secondary); }
.bg-dark .section-header .section-subtitle { color: var(--honda-red); }
.bg-dark .section-header .section-title { color: var(--text-light-primary); }
.bg-dark .section-header .section-description { color: var(--text-light-secondary); }

/* --- H-NORTE Logo Text Styles --- */
.h-black { color: var(--text-dark-primary) !important; } /* H preto */
.norte-red { color: var(--honda-red) !important; } /* -Norte vermelho */
.h-white { color: var(--text-light-primary) !important; } /* H branco (para fundos escuros) */

/* Para fundos escuros, força H branco */
.bg-dark .h-black { color: var(--text-light-primary) !important; }

/* Logo Text Component */
.logo-text { font-family: var(--font-primary); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.2rem); line-height: 1; display: inline-block; text-decoration: none; }
.logo-text .h-black { color: var(--text-dark-primary) !important; } /* H sempre escuro no header branco */
.logo-text .norte-red { color: var(--honda-red); } /* -Norte sempre vermelho */

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.8em 1.8em; font-family: var(--font-primary); font-weight: 600; font-size: 0.9rem; border-radius: var(--border-radius-pill); text-align: center; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; transition: all var(--transition-speed-normal) ease; position: relative; overflow: hidden; z-index: 1; border: 2px solid transparent; white-space: nowrap; line-height: 1.4; }
.btn i { margin-right: 8px; font-size: 0.9em; line-height: 1; }
.btn:disabled { cursor: not-allowed; opacity: 0.6; }

/* Botão Primário (Vermelho) */
.btn-primary { background-color: var(--honda-red); color: #fff; border-color: var(--honda-red); }
.btn-primary::before { /* Efeito sutil no hover */ content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; background-color: rgba(0, 0, 0, 0.1); transition: width var(--transition-speed-normal) ease; z-index: -1; border-radius: var(--border-radius-pill); }
.btn-primary:hover::before { width: 100%; }
.btn-primary:hover:not(:disabled) { background-color: var(--honda-red-darker); border-color: var(--honda-red-darker); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(228, 5, 33, 0.2); }

/* Botão Secundário (Borda Cinza / Fundo Transparente) */
.btn-secondary { background-color: transparent; color: var(--text-dark-primary); border-color: #ced4da; }
.btn-secondary:hover:not(:disabled) { background-color: var(--text-dark-primary); color: var(--bg-light-primary); border-color: var(--text-dark-primary); transform: translateY(-2px); }
/* Variação Secundário em Fundo Escuro */
.bg-dark .btn-secondary { color: var(--text-light-secondary); border-color: var(--text-light-secondary); }
.bg-dark .btn-secondary:hover:not(:disabled) { background-color: var(--text-light-secondary); color: var(--text-dark-primary); border-color: var(--text-light-secondary); }

/* Botão Grande */
.btn-large { padding: 1em 2.5em; font-size: 1rem; }

/* Botão WhatsApp CTA */
.btn-whatsapp-cta { background: var(--gradient-whatsapp); color: #fff !important; border-color: transparent; font-size: 0.9rem; padding: 0.9em 1.8em; border-radius: var(--border-radius-pill); box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2); }
.btn-whatsapp-cta:hover:not(:disabled) { transform: translateY(-3px) scale(1.02); box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3); }

/* Botão Minimalista (Texto sem fundo/borda) */
.btn-minimal { background: none; border: none; color: var(--text-dark-secondary); cursor: pointer; padding: 8px 0; font-size: 0.9rem; transition: color var(--transition-speed-fast) ease; display: inline-flex; align-items: center; }
.btn-minimal:hover { color: var(--text-dark-primary); }
.btn-minimal i { margin-right: 8px; }
/* Variação Minimalista em Fundo Escuro */
.bg-dark .btn-minimal { color: var(--text-light-secondary); }
.bg-dark .btn-minimal:hover { color: var(--text-light-primary); }


/* --- Header (Fundo Branco Fixo) --- */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    height: var(--header-height-mobile);
    z-index: 1000;
    transition: all var(--transition-speed-normal) ease;
    background-color: var(--bg-light-secondary); /* FUNDO BRANCO */
    border-bottom: 1px solid var(--border-light); /* Borda sutil */
}
.header.scrolled {
    height: calc(var(--header-height-mobile) - 10px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light-secondary); /* Mantém branco ao rolar */
}
.header.hidden { transform: translateY(-100%); }
.header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; padding: 0 5%; }

.logo-link { display: inline-block; transition: transform var(--transition-speed-normal) ease; z-index: 1012; line-height: 1; }
.logo-link:hover { transform: scale(1.03); }
/* Estilo para imagem do logo dentro do link */
.logo-img { max-width: 50%; height: auto; display: block; margin-left: 20px; } /* Adiciona margem */

.main-menu { display: none; } /* Menu Desktop escondido por padrão */
.header-actions { display: none; } /* Ações Desktop escondidas por padrão */

/* --- Hamburger Menu (Mobile) --- */
.hamburger-toggle {
    position: fixed; /* Fixo relativo à viewport */
    top: calc(var(--header-height-mobile) / 2 - 12.5px); /* Centraliza verticalmente */
    right: 5%;
    display: flex; /* Mostra no mobile */
    flex-direction: column; justify-content: space-around;
    width: 30px; height: 25px;
    background: transparent; border: none; cursor: pointer; padding: 0;
    z-index: 1012; /* Acima do conteúdo do header, abaixo do painel */
    transition: top var(--transition-speed-normal) ease;
}
/* Ajusta posição do hamburger quando header encolhe */
.header.scrolled .hamburger-toggle {
    top: calc((var(--header-height-mobile) - 10px) / 2 - 12.5px);
}
.hamburger-toggle .bar {
    display: block; width: 100%; height: 3px;
    background-color: var(--text-dark-primary); /* BARRAS ESCURAS (para header branco) */
    border-radius: 3px; transition: all var(--transition-speed-normal) ease-in-out;
    transform-origin: center;
}
/* Animação do X */
.hamburger-toggle.active .bar:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.hamburger-toggle.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-toggle.active .bar:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* --- Painel do Menu Hamburger (Fundo Branco) --- */
.hamburger-menu {
    position: fixed; top: 0; right: 0; transform: translateX(100%);
    width: 100%; max-width: 380px; height: 100vh;
    background: var(--bg-light-secondary); /* FUNDO BRANCO */
    z-index: 1011; transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    overflow-y: auto; display: flex; flex-direction: column; padding-top: 30px;
    box-shadow: -5px 0px 25px rgba(0,0,0,0.15); /* Sombra ajustada */
    border-left: 1px solid var(--border-light); /* Borda de separação */
}
.hamburger-menu.active { transform: translateX(0); }
.menu-container { padding: 30px 5%; flex-grow: 1; display: flex; flex-direction: column; }

/* Busca no Menu */
.menu-search { margin-bottom: 25px; }
.search-container { position: relative; display: flex; align-items: center; background-color: rgba(0, 0, 0, 0.04); border: 1px solid var(--border-light); border-radius: var(--border-radius-md); padding-right: 5px; }
.menu-search-input { flex-grow: 1; padding: 12px 15px; background: none; border: none; color: var(--text-dark-primary); font-size: 0.9rem; outline: none; }
.menu-search-input::placeholder { color: var(--text-dark-secondary); opacity: 0.8; }
.search-icon { padding: 0 10px; color: var(--text-dark-secondary); font-size: 1rem; order: -1; }
.search-mic-btn { padding: 10px; color: var(--text-dark-secondary); font-size: 1.2rem; transition: color var(--transition-speed-normal) ease; line-height: 1; cursor: pointer; background: none; border: none; }
.search-mic-btn:hover:not(:disabled) { color: var(--honda-red); }
.search-mic-btn:disabled { color: #adb5bd; cursor: not-allowed; animation: none !important; }
.search-mic-btn.listening i { color: var(--honda-red); animation: pulse-mic 1.5s infinite ease-in-out; }
@keyframes pulse-mic { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
#menu-search-results { margin-top: 15px; min-height: 20px; }
.search-no-results { display: none; color: var(--text-dark-secondary); font-style: italic; margin-top: 15px; text-align: center; }
/* Visibilidade de resultados da busca */
#main-menu-list-container .menu-item,
#main-menu-list-container .subcategory-item { display: none; } /* Esconder por padrão */
#main-menu-list-container .menu-item.search-match,
#main-menu-list-container .subcategory-item.search-match { display: flex; } /* Mostrar apenas os que combinam */

/* Seções e Links do Menu */
.menu-section { margin-bottom: 25px; }
.menu-section-title { font-size: 0.8rem; color: var(--text-dark-secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; font-weight: 500; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); }
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-item { margin-bottom: 0; }

/* Estilo base para links e botões no menu */
.menu-link, .category-header, .subcategory-link, .show-more-btn {
    display: flex; align-items: center; padding: 13px 5px;
    color: var(--text-dark-primary); /* Texto escuro */
    font-size: 1rem; font-weight: 500;
    transition: color var(--transition-speed-fast) ease, background-color var(--transition-speed-fast) ease;
    border-radius: var(--border-radius-sm); width: 100%; text-align: left;
    border: none; background: none;
}
.menu-link i, .category-header span i, .subcategory-link i, .show-more-btn i {
    margin-right: 15px; width: 20px; text-align: center;
    color: var(--honda-red); /* Ícones vermelhos */
    font-size: 0.9em;
}
.menu-link:hover, .category-header:hover, .subcategory-link:hover, .show-more-btn:hover {
    color: var(--honda-red);
    background-color: rgba(0,0,0,0.04); /* Fundo cinza claro no hover */
}
.menu-link.active, .subcategory-link.active {
    color: var(--honda-red); font-weight: 600;
    background-color: rgba(228, 5, 33, 0.08); /* Fundo vermelho claro para ativo */
}

/* Categorias Expansíveis */
.category-header { cursor: pointer; justify-content: space-between; }
.category-header span { display: inline-flex; align-items: center; }
.toggle-icon { transition: transform var(--transition-speed-normal) ease; font-size: 0.8rem; margin-left: auto; color: var(--text-dark-secondary); padding-left: 10px; }
.category-header.open .toggle-icon { transform: rotate(45deg); color: var(--honda-red); }
.category-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; background-color: rgba(0,0,0,0.02); border-radius: 0 0 var(--border-radius-md) var(--border-radius-md); }
.category-content.open { max-height: 1000px; /* Valor alto para permitir conteúdo */ }
.subcategory-list { padding: 10px 15px 10px 25px; }
.subcategory-link, .show-more-btn { font-size: 0.9rem; padding: 10px 5px; font-weight: 400; color: var(--text-dark-secondary); border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.subcategory-link:last-child { border-bottom: none; }
.subcategory-link i, .show-more-btn i { font-size: 0.8em; color: var(--text-dark-secondary); margin-right: 12px; }
.subcategory-link:hover, .show-more-btn:hover { color: var(--honda-red); background-color: rgba(0,0,0,0.05); }
.subcategory-link:hover i, .show-more-btn:hover i { color: var(--honda-red); }

/* Destaques no Menu */
.featured-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 15px; margin-top: 15px; }
.featured-service-link { display: block; position: relative; border-radius: var(--border-radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition-speed-normal) ease, box-shadow var(--transition-speed-normal) ease; border: 1px solid var(--border-light); }
.featured-service-link:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.featured-service-image { width: 100%; height: 100px; object-fit: cover; }
.featured-service-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 10px; background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); }
.featured-service-title { font-size: 0.8rem; font-weight: 600; color: #fff; margin-bottom: 3px; display: flex; align-items: center; }
.featured-service-title i { font-size: 0.8em; margin-right: 5px; color: var(--honda-red); }
.featured-service-description { font-size: 0.7rem; color: var(--text-light-secondary); margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Rodapé do Menu */
.menu-footer { margin-top: auto; padding-top: 25px; border-top: 1px solid var(--border-light); text-align: center; }
.menu-contact { margin-bottom: 20px; }
.menu-contact-item { display: block; margin-bottom: 10px; color: var(--text-dark-secondary); font-size: 0.9rem; transition: color var(--transition-speed-fast) ease; word-break: break-all; }
.menu-contact-item i { margin-right: 10px; color: var(--honda-red); width: 16px; text-align: center; }
.menu-contact-item:hover { color: var(--text-dark-primary); }
.menu-social { display: flex; justify-content: center; gap: 18px; }
.menu-social-link { color: var(--text-dark-secondary); font-size: 1.2rem; transition: color var(--transition-speed-fast) ease, transform var(--transition-speed-fast) ease; }
.menu-social-link:hover { transform: scale(1.15); color: var(--honda-red); /* Hover vermelho padrão */ }
.menu-social-link[aria-label*="YouTube"]:hover i { color: var(--youtube-red); /* Hover vermelho YouTube */ }


/* --- Hero Section --- */
.hero { min-height: 85vh; height: auto; display: flex; align-items: center; padding: clamp(120px, 18vh, 180px) 0 clamp(80px, 12vh, 120px); background-color: var(--bg-light-primary); position: relative; }
.hero::before { /* Elemento decorativo gradiente sutil */ content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at bottom left, rgba(228, 5, 33, 0.03), transparent 60%); z-index: 0; pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); gap: clamp(40px, 7vw, 80px); align-items: center; max-width: 1300px; margin: 0 auto; }
.hero-content { position: relative; z-index: 2; animation: fadeInSlideUp 1s ease-out 0.2s forwards; opacity: 0; transform: translateY(30px); }
.hero-title { color: var(--text-dark-primary); text-shadow: none; margin-bottom: 1rem; line-height: 1.2; }
.hero-title .h-black, .hero-title .norte-red { font-weight: 800; }
.hero-title .main-title-line { display: block; font-size: 1em; }
.hero-title .sub-title-line { font-weight: 500; font-size: 0.5em; display: block; margin-top: 0.5em; color: var(--text-dark-secondary); text-transform: uppercase; letter-spacing: 1px; }
.hero-subtitle { margin-bottom: 2rem; max-width: 550px; font-size: 1.1rem; line-height: 1.8; color: var(--text-dark-secondary); }
.hero-contacts { margin-bottom: 2rem; font-size: 1.1rem; font-weight: 500; color: var(--text-dark-primary); display: flex; flex-wrap: wrap; gap: 10px 30px; align-items: center; }
.hero-contacts a { color: inherit; text-decoration: none; transition: color 0.2s; }
.hero-contacts a:hover { color: var(--honda-red); }
.hero-contacts i { margin-right: 8px; color: var(--honda-red); font-size: 1em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 15px; }
.hero-cta .btn { padding: 0.9em 2em; font-size: 0.95rem; }
.hero-video-column { position: relative; width: 100%; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 16 / 9; animation: fadeInSlideUp 1s ease-out 0.4s forwards; opacity: 0; transform: translateY(30px); }
.hero-video-column video { display: block; width: 100%; height: 100%; object-fit: cover; }
@keyframes fadeInSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }


/* --- Philosophy Section (Fundo Escuro com Vídeo) --- */
.philosophy-section { position: relative; overflow: hidden; padding: clamp(80px, 12vw, 120px) 0; min-height: 70vh; display: flex; align-items: center; color: var(--text-light-primary); /* Texto claro padrão */ }
.philosophy-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; overflow: hidden; }
.philosophy-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; object-fit: cover; }
.philosophy-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(10, 10, 10, 0.8); /* Overlay escuro */ z-index: -1; }
.philosophy-content-wrapper { position: relative; z-index: 1; width: 90%; max-width: 1200px; margin: 0 auto; }
.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(40px, 6vw, 70px); align-items: center; }
.philosophy-text .section-title { color: var(--text-light-primary); margin-bottom: 1.5rem; }
.philosophy-text .philosophy-description { color: var(--text-light-secondary); margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.8; }
.philosophy-image { text-align: center; }
.philosophy-image img { border-radius: var(--border-radius-lg); box-shadow: var(--shadow-xl); width: 100%; max-width: 550px; height: auto; display: inline-block; }


/* --- Seção "Mãos Experientes" (Nova) --- */
.expert-section {
    background: var(--gradient-light); /* Usa gradiente claro */
    padding: clamp(70px, 11vw, 110px) 0;
}
.expert-grid { display: grid; gap: clamp(40px, 6vw, 80px); align-items: flex-start; }
@media (min-width: 992px) { .expert-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }
.expert-text-content .section-title { text-align: left; margin-bottom: 1.2rem; }
.expert-description { font-size: 1.05rem; color: var(--text-dark-secondary); line-height: 1.7; margin-bottom: 2.5rem; text-align: left; max-width: 600px; }
/* Grid de Benefícios */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-top: 2.5rem; }
.benefit-card { background-color: var(--bg-light-secondary); padding: 25px 20px; border-radius: var(--border-radius-lg); text-align: center; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); transition: transform var(--transition-speed-normal) ease, box-shadow var(--transition-speed-normal) ease; display: flex; flex-direction: column; align-items: center; }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 15px; line-height: 1; width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background-color: rgba(228, 5, 33, 0.1); color: var(--honda-red); }
.benefit-icon.icon-parts { background-color: rgba(13, 110, 253, 0.1); color: var(--accent-blue); }
.benefit-icon.icon-warranty { background-color: rgba(25, 135, 84, 0.1); color: var(--accent-green); }
.benefit-title { font-size: 1.1rem; font-weight: 600; color: var(--text-dark-primary); margin-bottom: 8px; }
.benefit-description { font-size: 0.85rem; color: var(--text-dark-secondary); line-height: 1.6; margin-bottom: 0; }
/* Card CTA (Ação) */
.expert-cta-card { background-color: #fff; border-radius: var(--border-radius-xl); padding: clamp(35px, 5vw, 50px); box-shadow: var(--shadow-lg); text-align: center; border: 1px solid rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.expert-cta-card .cta-icon-top { font-size: 2.5rem; color: var(--honda-red); margin-bottom: 1rem; }
.expert-cta-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--text-dark-primary); margin-bottom: 0.8rem; }
.expert-cta-card p { font-size: 0.95rem; color: var(--text-dark-secondary); line-height: 1.6; margin-bottom: 2rem; max-width: 380px; margin-left: auto; margin-right: auto; }
.expert-cta-card .cta-buttons { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.expert-cta-card .cta-buttons .cta-btn { width: 100%; max-width: 350px; padding: 0.9em 1.5em; font-size: 0.95rem; }
/* Responsividade Seção Mãos Experientes */
@media (max-width: 991px) {
    .expert-grid { grid-template-columns: 1fr; }
    .expert-text-content .section-title, .expert-description { text-align: center; margin-left: auto; margin-right: auto; }
    .benefits-grid { max-width: 500px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 576px) {
    .benefits-grid { grid-template-columns: 1fr; gap: 15px; }
    .expert-cta-card .cta-buttons .cta-btn { font-size: 0.9rem; padding: 0.8em 1.2em; }
    .expert-cta-card h3 { font-size: 1.3rem; }
}


/* --- Seção Modelos Quantum (Fundo Escuro) --- */
.models-section-quantum { background: linear-gradient(160deg, #1f2125 0%, #111317 100%); padding: clamp(80px, 13vw, 120px) 0; position: relative; overflow: hidden; }
.quantum-bg-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; z-index: 0; }
.quantum-bg-elements span { position: absolute; background: linear-gradient(45deg, rgba(228, 5, 33, 0.05), rgba(228, 5, 33, 0)); border-radius: 50%; animation: quantum-float 15s infinite ease-in-out alternate; }
.quantum-bg-elements span:nth-child(1) { width: 300px; height: 300px; top: 10%; left: 5%; animation-duration: 18s; }
.quantum-bg-elements span:nth-child(2) { width: 400px; height: 400px; bottom: 5%; right: 10%; animation-duration: 22s; animation-delay: -5s; }
.quantum-bg-elements span:nth-child(3) { width: 200px; height: 200px; top: 40%; left: 45%; animation-duration: 16s; animation-delay: -2s; }
@keyframes quantum-float { from { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.4; } to { transform: translateY(-35px) rotate(25deg) scale(1.1); opacity: 0.7; } }
.models-section-quantum .container { position: relative; z-index: 1; }
.models-section-quantum .section-header .quantum-subtitle { color: var(--honda-red); font-family: 'Roboto Mono', monospace; font-weight: 500; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
.models-section-quantum .section-header .quantum-title { color: #f1f1f1; font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.models-section-quantum .section-header .quantum-description { color: #b0b8c4; max-width: 700px; margin: 1rem auto 0 auto; font-size: 1.05rem; line-height: 1.7; }
.models-grid-quantum { display: grid; gap: clamp(30px, 4vw, 40px); margin-top: 70px; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.model-card-quantum { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease; background-color: var(--bg-dark-secondary); cursor: pointer; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); }
.model-card-quantum:focus { outline: 2px solid var(--honda-red); outline-offset: 2px; }
.model-card-quantum:hover, .model-card-quantum:focus, .model-card-quantum:focus-within { transform: scale(1.03); box-shadow: 0 15px 45px rgba(228, 5, 33, 0.15); }
.model-card-quantum__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }
.model-card-quantum__image-container { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.model-card-quantum__image-container img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.model-card-quantum:hover .model-card-quantum__image-container img, .model-card-quantum:focus .model-card-quantum__image-container img, .model-card-quantum:focus-within .model-card-quantum__image-container img { transform: scale(1.1); }
.model-card-quantum__title-bar { background: rgba(10, 10, 10, 0.7); backdrop-filter: blur(5px); padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); }
.model-card-quantum__title { color: var(--text-light-primary); font-size: 1.15rem; font-weight: 600; margin: 0; font-family: var(--font-primary); }
.model-card-quantum__icon { color: var(--whatsapp-green); font-size: 1.3rem; opacity: 0.9; }
.model-card-quantum__details-panel { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(transparent, var(--bg-dark-secondary) 40%); padding: 60px 25px 25px 25px; transform: translateY(100%); transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.45s ease, visibility 0s 0.45s; opacity: 0; visibility: hidden; z-index: 3; pointer-events: none; }
.model-card-quantum:hover .model-card-quantum__details-panel, .model-card-quantum:focus .model-card-quantum__details-panel, .model-card-quantum:focus-within .model-card-quantum__details-panel { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s, 0s, 0s; }
.model-card-quantum__details-panel h3 { color: var(--text-light-primary); text-align: center; margin-bottom: 18px; font-size: 1rem; font-weight: 600; }
.quantum-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.quantum-btn { display: inline-flex; align-items: center; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--text-light-primary); padding: 8px 14px; border-radius: var(--border-radius-md); font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; text-decoration: none; }
.quantum-btn i { margin-right: 6px; font-size: 1em; transition: transform 0.3s ease; }
.quantum-btn span { line-height: 1; }
.quantum-btn:hover, .quantum-btn:focus { background: var(--honda-red); color: #fff; border-color: var(--honda-red); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(228, 5, 33, 0.2); outline: none; }
.quantum-btn:hover i, .quantum-btn:focus i { transform: scale(1.1); }
.quantum-btn.wa-trigger-btn:hover, .quantum-btn.wa-trigger-btn:focus { background: var(--whatsapp-green); border-color: var(--whatsapp-green); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.model-card--other-models-quantum .quantum-btn { background-color: rgba(228, 5, 33, 0.8); border-color: rgba(228, 5, 33, 0.9); }
.model-card--other-models-quantum .quantum-btn:hover, .model-card--other-models-quantum .quantum-btn:focus { background-color: var(--honda-red); border-color: var(--honda-red); }
.model-card-quantum__glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: var(--border-radius-lg); background: radial-gradient(circle at 50% 110%, rgba(228, 5, 33, 0.15), transparent 70%); opacity: 0; transition: opacity 0.5s ease; z-index: 1; pointer-events: none; }
.model-card-quantum:hover .model-card-quantum__glow, .model-card-quantum:focus .model-card-quantum__glow, .model-card-quantum:focus-within .model-card-quantum__glow { opacity: 0.7; }
.model-card-quantum--highlight .model-card-quantum__glow { background: radial-gradient(circle at 50% 110%, rgba(228, 5, 33, 0.3), transparent 70%); }
.model-card-quantum--highlight:hover .model-card-quantum__glow, .model-card-quantum--highlight:focus .model-card-quantum__glow, .model-card-quantum--highlight:focus-within .model-card-quantum__glow { opacity: 0.9; }


/* --- Seção Revisões por Modelo (Fundo Cinza Claro) --- */
.model-revisions-section { padding: clamp(60px, 10vw, 100px) 0; background-color: var(--bg-light-primary); }
.model-revisions-section .section-header .section-title { color: var(--text-dark-primary); }
.model-revisions-section .section-header .section-description { color: var(--text-dark-secondary); }
.model-revisions-section .section-header .section-subtitle:nth-of-type(2) { margin-top: 1.5rem; color: var(--accent-green); font-weight: 500; font-size: 1rem; }
.model-revisions-section .section-header p.revision-whatsapp-prompt { font-size: 1rem; color: var(--text-dark-secondary); margin-top: -0.5rem; margin-bottom: 1.5rem; }
.model-revision-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; margin-bottom: 50px; }
@media (min-width: 600px) { .model-revision-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .model-revision-grid { grid-template-columns: repeat(3, 1fr); gap: 35px; } }
@media (min-width: 1300px) { .model-revision-grid { max-width: 1200px; margin-left: auto; margin-right: auto; } }
.model-revision-card { background-color: var(--bg-light-secondary); border-radius: var(--border-radius-lg); box-shadow: var(--shadow-md); overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid var(--border-light); }
.model-revision-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.model-card-image-area { position: relative; width: 100%; height: 200px; overflow: hidden; background-color: #f0f0f0; }
.model-card-image-area img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.model-revision-card:hover .model-card-image-area img { transform: scale(1.05); }
.model-card-banner { position: absolute; top: 20px; left: 0; background-color: var(--honda-red); color: #fff; padding: 8px 20px 8px 15px; border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0; font-size: 1.1rem; font-weight: 700; font-family: var(--font-primary); box-shadow: 0 3px 6px rgba(0,0,0,0.15); z-index: 2; max-width: 85%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.model-card-content-area { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; text-align: center; }
.model-card-content-area h3 { font-size: 1.15rem; font-weight: 600; color: var(--text-dark-primary); margin-bottom: 8px; line-height: 1.4; }
.model-card-content-area .km-range { font-size: 0.9rem; color: var(--honda-red); font-weight: 500; margin-bottom: 12px; display: block; }
.model-card-content-area .cta-text { font-size: 0.9rem; color: var(--text-dark-secondary); line-height: 1.5; margin-bottom: 20px; flex-grow: 1; min-height: 80px; text-align: left; }
/* Usando feature-list dentro do card de revisão */
.model-card-content-area .feature-list { padding-left: 5px; margin-top: 0.5rem; margin-bottom: 1.2rem;}
.model-card-content-area .feature-list li { font-size: 0.85rem; margin-bottom: 8px; padding-left: 22px;}
.model-card-content-area .feature-list li::before { font-size: 1em; top: 1px;}
.model-card-content-area .btn { margin-top: auto; width: 100%; max-width: 250px; margin-left: auto; margin-right: auto; padding: 0.8em 1.5em; }
.model-revisions-section .revisions-footer-note { margin-top: 50px; text-align: center; padding: 25px; background-color: rgba(0,0,0, 0.03); border-radius: var(--border-radius-md); border: 1px dashed #ccc; }
.model-revisions-section .revisions-footer-note p { font-size: 0.95rem; color: var(--text-dark-secondary); line-height: 1.6; margin-bottom: 15px; max-width: 700px; margin-left: auto; margin-right: auto; }
.model-revisions-section .revisions-footer-note strong { color: var(--text-dark-primary); }
.model-revisions-section .revisions-footer-note .revision-whatsapp-btn{ margin-top: 15px; max-width: 320px; margin-left: auto; margin-right: auto; }


/* --- Seção de Serviços (Fundo Branco) --- */
.services-section { background-color: var(--bg-white); }
.services-section .section-header .section-description { color: var(--text-dark-secondary); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.service-card { background-color: var(--bg-light-primary); border-radius: var(--border-radius-lg); padding: 35px 30px; text-align: center; box-shadow: var(--shadow-sm); transition: transform var(--transition-speed-normal) ease, box-shadow var(--transition-speed-normal) ease; position: relative; overflow: hidden; border: 1px solid #eee; display: flex; flex-direction: column; height: 100%; }
.service-card::before { /* Efeito radial no hover */ content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(228, 5, 33, 0.08) 0%, rgba(228, 5, 33, 0) 70%); transform: scale(0); transition: transform 0.6s ease; z-index: 0; opacity: 0; border-radius: 50%; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scale(1); opacity: 1; }
.service-icon { font-size: 3rem; margin-bottom: 20px; display: inline-block; position: relative; z-index: 1; transition: transform var(--transition-speed-normal) ease, color var(--transition-speed-fast) ease; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
/* Cores Variadas para Ícones de Serviços */
.services-grid .service-card:nth-child(5n + 1) .service-icon { color: var(--honda-red); }
.services-grid .service-card:nth-child(5n + 2) .service-icon { color: var(--accent-blue); }
.services-grid .service-card:nth-child(5n + 3) .service-icon { color: var(--accent-green); }
.services-grid .service-card:nth-child(5n + 4) .service-icon { color: var(--accent-gold); }
.services-grid .service-card:nth-child(5n + 5) .service-icon { color: #6f42c1; /* Roxo */ }
.service-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 15px; color: var(--text-dark-primary); position: relative; z-index: 1; }
.service-description { font-size: 0.9rem; color: var(--text-dark-secondary); margin-bottom: 20px; position: relative; z-index: 1; flex-grow: 1; min-height: 50px; }
/* Usando feature-list dentro do card de serviço */
.service-card .feature-list { padding-left: 5px; text-align: left; margin-top: 0; margin-bottom: 1.2rem; flex-grow: 1; min-height: 60px; }
.service-card .feature-list li { font-size: 0.85rem; margin-bottom: 8px; padding-left: 22px; }
.service-card .feature-list li::before { font-size: 1em; top: 1px; }
.service-link { font-size: 0.9rem; font-weight: 600; color: var(--honda-red); display: inline-flex; align-items: center; position: relative; z-index: 1; margin-top: auto; background: none; border: none; padding: 5px; }
.service-link i { margin-left: 8px; transition: transform var(--transition-speed-fast) ease; }
.service-link:hover i { transform: translateX(5px); }


/* --- Seção Diagonal (Helper) --- */
.diagonal-container { position: relative; padding: 100px 0; overflow: visible; /* Permite que o fundo inclinado vaze */ }
.diagonal-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform: skewY(-3deg); /* Inclinação */ transform-origin: top left; z-index: -1; }
.diagonal-bg.light { background: var(--gradient-light); }
.diagonal-bg.dark { background: var(--gradient-dark); }
.diagonal-container > .container { position: relative; z-index: 2; /* Conteúdo fica acima do fundo */ }


/* --- Seção Troca de Óleo (Fundo Branco dentro da Diagonal Clara) --- */
.oil-change-section { background-color: transparent; } /* Fundo é dado pelo diagonal-container */
.oil-change-section.diagonal-container { padding-bottom: 120px; } /* Espaço extra abaixo */
.oil-change-section .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(40px, 6vw, 80px); align-items: center; }
.oil-change-content { z-index: 2; }
.oil-change-section .section-title { text-align: left; }
.oil-change-section .section-description { color: var(--text-dark-secondary); text-align: left; }
.oil-change-content .feature-list { margin: 30px 0; }
/* Placeholder de Vídeo (Reutilizado) */
.video-placeholder { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; z-index: 1; cursor: pointer; aspect-ratio: 16 / 9; background-color: #ccc; transition: transform var(--transition-speed-normal) ease, box-shadow var(--transition-speed-normal) ease; display: block; margin: 0 auto; max-width: 100%; }
.video-placeholder:hover { transform: scale(1.03); box-shadow: var(--shadow-xl); }
.video-container { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-container::after { /* Ícone Play */ content: '\f04b'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: clamp(3rem, 8vw, 4rem); color: rgba(255, 255, 255, 0.85); text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6); position: absolute; transition: transform 0.3s ease, color 0.3s ease; z-index: 1; pointer-events: none; }
.video-placeholder:hover .video-container::after { transform: scale(1.15); color: #fff; }
.video-caption { position: absolute; bottom: 0; left: 0; width: 100%; text-align: center; padding: 12px; font-size: 0.85rem; color: #eee; background: linear-gradient(transparent, rgba(0, 0, 0, 0.7)); margin-bottom: 0; z-index: 2; }


/* --- Seção Transmissão (Fundo Cinza Claro) --- */
.transmission-section { background-color: var(--bg-light-primary); }
.transmission-section .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(40px, 6vw, 80px); align-items: center; }
.transmission-content { z-index: 2; }
.transmission-section .section-title { text-align: left; }
.transmission-section .section-description { color: var(--text-dark-secondary); text-align: left; }
.transmission-content .feature-list { margin: 30px 0; }
/* Reordena no mobile se necessário */
@media (max-width: 991px) { .transmission-section .transmission-content { order: 1; } .transmission-section .video-placeholder { order: 2; margin-top: 30px;} }


/* --- Seção Sobre (Fundo Escuro dentro da Diagonal Escura) --- */
.about-section { background-color: transparent; overflow: hidden; } /* Fundo via diagonal-container */
.about-section .diagonal-bg.dark { background: var(--gradient-dark); }
.about-section .about-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-content { color: var(--text-light-primary); /* Texto claro */ }
.about-content .section-subtitle { color: var(--honda-red); }
.about-content .section-title { color: var(--text-light-primary); text-align: left; }
.about-content .section-description, .about-content .experience-text { color: var(--text-light-secondary); text-align: left; }
.about-content .experience-text { font-weight: 500; margin-top: 1.5rem; margin-bottom: 1.5rem; font-size: 1.05rem; }
.about-content .feature-list { margin: 30px 0; }
.about-content .btn-primary { margin-top: 1rem; } /* Botão vermelho sobre fundo escuro */


/* --- Seção Google Reviews (Fundo Escuro) --- */
/* Baseada nos estilos fornecidos anteriormente */
.google-reviews-widget {
    background-color: var(--bg-dark-secondary); border-radius: var(--border-radius-xl);
    padding: 25px; max-width: 1100px; width: 100%; margin: 20px auto;
    box-shadow: var(--shadow-lg); overflow: visible; position: relative;
    font-family: var(--font-secondary); border: 1px solid var(--border-dark);
}
.google-reviews-widget .google-reviews-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding: 0 10px; flex-wrap: wrap; gap: 15px; }
.google-reviews-widget .google-logo img { height: 30px; display: block; max-width: 100%; }
.google-reviews-widget .google-overall-rating { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--text-light-secondary); }
.google-reviews-widget .google-overall-rating .stars { color: var(--google-star-gold); font-size: 20px; }
.google-reviews-widget .google-overall-rating .stars i { margin-right: 1px; }
.google-reviews-widget .google-overall-rating .rating-value { font-weight: bold; font-size: 18px; color: var(--text-light-primary); margin-left: 2px; }
.google-reviews-widget .google-overall-rating .review-count { color: var(--text-light-secondary); }
.google-reviews-widget .write-review-btn { background-color: var(--google-red); color: #ffffff; padding: 10px 20px; border-radius: var(--border-radius-md); text-decoration: none; font-weight: 500; font-size: 14px; transition: background-color var(--transition-speed-fast) ease; border: none; cursor: pointer; white-space: nowrap; }
.google-reviews-widget .write-review-btn:hover { background-color: var(--google-red-darker); }
.google-reviews-widget .google-reviews-slider-container { position: relative; padding: 0 40px; margin: 0 -40px; }
.google-reviews-widget .google-review-card { background-color: var(--bg-dark-primary); border-radius: var(--border-radius-lg); padding: 20px; display: flex; flex-direction: column; height: 100%; box-sizing: border-box; border: 1px solid var(--border-dark); box-shadow: var(--shadow-sm); }
.google-reviews-widget .review-card-header { display: flex; align-items: center; margin-bottom: 15px; gap: 12px; }
.google-reviews-widget .google-g-logo img { height: 24px; width: 24px; max-width: 100%; }
.google-reviews-widget .reviewer-avatar img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-dark); }
.google-reviews-widget .reviewer-details { flex-grow: 1; min-width: 0; }
.google-reviews-widget .reviewer-name { font-family: var(--font-primary); font-weight: 600; font-size: 1.1rem; /* H4 Size */ color: var(--text-light-primary); margin: 0 0 3px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }
.google-reviews-widget .review-date { font-size: 12px; color: var(--text-light-secondary); margin: 0; }
.google-reviews-widget .review-rating { margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.google-reviews-widget .review-rating .stars { color: var(--google-star-gold); font-size: 16px; }
.google-reviews-widget .review-rating .verified-badge { width: 16px; height: 16px; background-color: var(--google-blue); border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; color: white; flex-shrink: 0; }
.google-reviews-widget .review-rating .verified-badge i { font-size: 9px; }
.google-reviews-widget .google-review-card > p.review-text { font-size: 14px; line-height: 1.6; color: var(--text-light-primary); flex-grow: 1; margin: 0; word-break: break-word; overflow-wrap: break-word; }
/* Swiper Arrows */
.google-reviews-widget .google-reviews-swiper .swiper-button-prev,
.google-reviews-widget .google-reviews-swiper .swiper-button-next { width: 45px; height: 45px; background-color: var(--bg-dark-secondary); border: 1px solid var(--border-dark); border-radius: 50%; color: var(--text-light-primary); transition: background-color var(--transition-speed-fast) ease, transform var(--transition-speed-fast) ease; position: absolute; top: 50%; transform: translateY(-50%); margin-top: 0; z-index: 10; cursor: pointer; }
.google-reviews-widget .google-reviews-swiper .swiper-button-prev:hover,
.google-reviews-widget .google-reviews-swiper .swiper-button-next:hover { background-color: rgba(60, 60, 60, 0.9); transform: translateY(-50%) scale(1.05); }
.google-reviews-widget .google-reviews-swiper .swiper-button-prev { left: 0px; }
.google-reviews-widget .google-reviews-swiper .swiper-button-next { right: 0px; }
.google-reviews-widget .google-reviews-swiper .swiper-button-prev::after,
.google-reviews-widget .google-reviews-swiper .swiper-button-next::after { font-size: 18px; font-weight: bold; }
/* Swiper Pagination */
.google-reviews-widget .google-reviews-swiper .swiper-pagination { position: static; margin-top: 25px; bottom: auto !important; }
.google-reviews-widget .google-reviews-swiper .swiper-pagination-bullet { background-color: rgba(255, 255, 255, 0.3); opacity: 1; transition: background-color var(--transition-speed-fast) ease, transform var(--transition-speed-fast) ease; width: 10px; height: 10px; }
.google-reviews-widget .google-reviews-swiper .swiper-pagination-bullet-active { background-color: var(--honda-red); transform: scale(1.3); }


/* --- Seção Agendamento (Gradiente Claro, Card Branco) --- */
.schedule-section { background: var(--gradient-light); }
.schedule-section .section-header .section-description { color: var(--text-dark-secondary); }
.schedule-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr)); gap: clamp(40px, 6vw, 80px); align-items: flex-start; }
.schedule-content .section-subtitle { text-align: left; }
.schedule-content .section-title { text-align: left; }
.schedule-content .section-description { text-align: left; margin-left: 0; }
.schedule-content .feature-item { display: flex; align-items: flex-start; margin-bottom: 20px; }
.schedule-content .feature-icon { font-size: 1.5rem; color: var(--honda-red); margin-right: 15px; margin-top: 5px; flex-shrink: 0; width: 25px; text-align: center; }
.schedule-content .feature-content .feature-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 5px; text-align: left; color: var(--text-dark-primary); }
.schedule-content .feature-content .feature-description { font-size: 0.9rem; margin-bottom: 0; line-height: 1.6; color: var(--text-dark-secondary); }
/* Card do Formulário */
.schedule-form { background-color: #fff; padding: clamp(25px, 4vw, 40px); border-radius: var(--border-radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; color: var(--text-dark-secondary); }
.form-label .optional-label { font-size: 0.8em; font-weight: 400; color: #6c757d; margin-left: 5px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 15px; border: 1px solid #ced4da; border-radius: var(--border-radius-md); font-size: 0.95rem; transition: border-color var(--transition-speed-fast) ease, box-shadow var(--transition-speed-fast) ease; background-color: var(--bg-light-primary); color: var(--text-dark-primary); line-height: 1.5; }
.form-select { appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23495057' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; padding-right: 2.5rem; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--honda-red); box-shadow: 0 0 0 3px rgba(228, 5, 33, 0.15); background-color: #fff; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.form-select.select-value-chosen { color: var(--text-dark-primary); font-weight: 500; border-color: #adb5bd; }
.form-select:focus.select-value-chosen { border-color: var(--honda-red); }
.form-privacy { display: flex; align-items: flex-start; font-size: 0.85rem; color: var(--text-dark-secondary); margin-top: 15px; }
.form-privacy input[type="checkbox"] { margin-right: 10px; width: 16px; height: 16px; accent-color: var(--honda-red); flex-shrink: 0; margin-top: 3px; cursor: pointer; }
.form-privacy label { margin-bottom: 0; cursor: pointer; line-height: 1.5; }
.form-privacy a { color: var(--honda-red); text-decoration: underline; }
.schedule-form .btn { width: 100%; margin-top: 20px; }
/* Garante espaçamento e centralização */
.schedule-section {
  padding: 4rem 1rem;
}

.schedule-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.schedule-content, .schedule-form {
  flex: 1 1 400px;
  max-width: 600px;
}

/* Texto centralizado no mobile */
.schedule-content {
  text-align: left;
}

@media (max-width: 768px) {
  .schedule-content {
    text-align: center;
  }
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature-icon {
    margin-bottom: 0.5rem;
  }
}


/* --- Seção de Contato (Fundo Cinza Claro) --- */
.contact-section { background: var(--bg-light-primary); padding-bottom: clamp(80px, 12vw, 120px); }
.contact-section .section-header .section-description { color: var(--text-dark-secondary); }
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-bottom: 50px; }
.contact-item { display: flex; align-items: center; background-color: var(--bg-light-secondary); padding: 25px; border-radius: var(--border-radius-lg); transition: transform var(--transition-speed-normal) ease, box-shadow var(--transition-speed-normal) ease; border: 1px solid #e9ecef; box-shadow: var(--shadow-sm); }
.contact-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-icon { font-size: 1.8rem; color: var(--honda-red); margin-right: 20px; flex-shrink: 0; width: 40px; text-align: center; }
.contact-content { flex-grow: 1; }
.contact-title { font-size: 1.05rem; font-weight: 600; color: var(--text-dark-primary); margin-bottom: 8px; }
.contact-text, .contact-text a { font-size: 0.9rem; color: var(--text-dark-secondary); line-height: 1.6; }
.contact-text a:hover { color: var(--honda-red-darker); text-decoration: underline; }
.contact-map { height: 450px; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid #ddd; }
.contact-map iframe { width: 100%; height: 100%; border: 0; transition: filter 0.3s ease; } /* Filtro removido para fundo claro */


/* ============================================= */
/* === ESTILOS MODERNOS PARA RODAPÉ BRANCO === */
/* ============================================= */
.footer-modern {
    background-color: var(--bg-light-secondary); /* FUNDO BRANCO */
    padding-top: 70px; /* Ajuste leve no padding superior */
    position: relative;
    overflow: hidden;
    color: var(--text-dark-secondary); /* TEXTO PADRÃO CINZA ESCURO */
    border-top: 1px solid var(--border-light); /* BORDA SUPERIOR SUTIL */
}
.footer-container {
    position: relative; z-index: 2; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; padding: 50px 5% 50px; max-width: 1400px; margin: 0 auto;
}
.footer-column { padding: 0 10px; }
.footer-logo { margin-bottom: 25px; }
/* Garante H preto no logo do rodapé branco */
.footer-modern .footer-logo .logo-text .h-black { color: var(--text-dark-primary) !important; }
.footer-modern .footer-logo .logo-text .norte-red { color: var(--honda-red); }
.footer-modern .footer-description { font-size: 0.9rem; color: var(--text-dark-secondary); margin-bottom: 25px; line-height: 1.7; }
.footer-modern .footer-badges { display: flex; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; justify-content: flex-start; }
@media (max-width: 992px) { .footer-modern .footer-badges { justify-content: center; } }
.footer-modern .footer-badge { opacity: 0.9; height: 180px; width: auto; border-radius: var(--border-radius-sm); } /* Atributos width/height removidos da img */
.footer-modern .social-links { display: flex; gap: 18px; }
.footer-modern .social-link { color: var(--text-dark-secondary); font-size: 1.3rem; transition: color var(--transition-speed-fast) ease, transform var(--transition-speed-fast) ease; }
.footer-modern .social-link:hover { transform: translateY(-3px); color: var(--honda-red); }
.footer-modern .social-link:hover .fa-youtube { color: var(--youtube-red); }
.footer-modern .footer-title { font-size: 1.1rem; font-weight: 600; color: var(--text-dark-primary); margin-bottom: 25px; position: relative; padding-bottom: 12px; text-align: left; }
.footer-modern .footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background-color: var(--honda-red); border-radius: 2px; }
@media (max-width: 992px) { .footer-modern .footer-title::after { left: 50%; transform: translateX(-50%); } }
.footer-modern .footer-links li, .footer-modern .footer-contact li { margin-bottom: 12px; }
.footer-modern .footer-links a, .footer-modern .footer-contact span, .footer-modern .footer-contact a { color: var(--text-dark-secondary); font-size: 0.9rem; transition: color var(--transition-speed-fast) ease; display: flex; align-items: flex-start; line-height: 1.6; }
.footer-modern .footer-links a:hover, .footer-modern .footer-contact a:hover { color: var(--honda-red); }
.footer-modern .footer-contact-icon { margin-right: 12px; color: var(--honda-red); margin-top: 5px; width: 18px; text-align: center; flex-shrink: 0; font-size: 0.9em; }
.footer-modern .footer-newsletter { margin-top: 25px; }
.footer-modern .newsletter-title { font-size: 0.95rem; color: var(--text-dark-secondary); margin-bottom: 15px; font-weight: 500; }
.footer-modern .newsletter-form { display: flex; max-width: 100%; }
.footer-modern .newsletter-input { flex-grow: 1; padding: 12px 15px; border: 1px solid var(--border-light); background-color: var(--bg-light-primary); color: var(--text-dark-primary); border-radius: var(--border-radius-md) 0 0 var(--border-radius-md); font-size: 0.9rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.footer-modern .newsletter-input:focus { outline: none; border-color: var(--honda-red); background-color: var(--bg-light-secondary); box-shadow: 0 0 0 3px rgba(228, 5, 33, 0.15); }
.footer-modern .newsletter-input::placeholder { color: var(--text-dark-secondary); opacity: 0.7; }
.footer-modern .newsletter-button { padding: 12px 18px; background-color: var(--honda-red); color: #fff; border: none; border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0; font-size: 1rem; font-weight: 500; transition: background-color var(--transition-speed-fast) ease; cursor: pointer; }
.footer-modern .newsletter-button:hover { background-color: var(--honda-red-darker); }
.footer-modern .footer-map { height: 180px; border-radius: var(--border-radius-md); overflow: hidden; margin-top: 25px; border: 1px solid var(--border-light); }
.footer-modern .footer-map iframe { width: 100%; height: 100%; border: 0; filter: none; /* Sem filtro no mapa */ }
/* Rodapé Inferior (Copyright) - Fundo Cinza Claro */
.footer-bottom { background-color: var(--bg-light-primary); padding: 25px 0; border-top: 1px solid var(--border-light); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 15px; /* Ajustado gap */ max-width: 1400px; } /* Ajustado gap */
.footer-modern .footer-copyright { font-size: 0.85rem; color: var(--text-dark-secondary); margin-bottom: 0; text-align: center; }
.footer-modern .footer-copyright .h-black { color: var(--text-dark-primary) !important; } /* Garante H preto */
.footer-modern .developer-credit { font-size: 0.85rem; color: var(--text-dark-secondary); text-align: center; } /* Nova classe */
.footer-modern .developer-credit a { color: var(--text-dark-secondary); } /* Ajuste cor do link */
.footer-modern .developer-credit a:hover { color: var(--honda-red); } /* Ajuste cor do link hover */
.footer-modern .footer-links-bottom { display: flex; gap: 20px; justify-content: center; }
.footer-modern .footer-links-bottom a { font-size: 0.85rem; color: var(--text-dark-secondary); transition: color var(--transition-speed-fast) ease; }
.footer-modern .footer-links-bottom a:hover { color: var(--honda-red); }
/* Ajustes Desktop para Rodapé Branco */
@media (min-width: 993px) {
    .footer-modern .footer-column { text-align: left; }
    .footer-modern .social-links { justify-content: flex-start; }
    .footer-modern .footer-title { text-align: left; }
    .footer-modern .footer-title::after { left: 0; transform: none; }
    .footer-modern .footer-links a, .footer-modern .footer-contact span, .footer-modern .footer-contact a { justify-content: flex-start; }
    .footer-modern .newsletter-form { margin: 0; }
    .footer-modern .footer-copyright { width: auto; text-align: left; }
    .footer-modern .developer-credit { width: auto; text-align: center; } /* Mantém centralizado ou pode alinhar à direita */
    .footer-modern .footer-links-bottom { width: auto; margin-top: 0; justify-content: flex-end; }
    .footer-modern .footer-badges { justify-content: flex-start; }
    .footer-bottom .container { justify-content: space-between; align-items: center; } /* Garante alinhamento em linha no desktop */
}
@media (max-width: 992px) { /* Ajustes Mobile para Copyright/Dev */
    .footer-bottom .container { justify-content: center; text-align: center;} /* Centraliza tudo no mobile */
    .footer-modern .footer-copyright,
    .footer-modern .developer-credit,
    .footer-modern .footer-links-bottom { width: 100%; margin-bottom: 5px; } /* Ocupa largura e adiciona espaço */
     .footer-modern .footer-links-bottom { margin-top: 5px; }
}
/* ========================================== */
/* === FIM ESTILOS RODAPÉ BRANCO MODERNO === */
/* ========================================== */


/* --- Botões Flutuantes --- */
.floating-buttons-modern { position: fixed; bottom: calc(var(--bottom-nav-height) + 15px + env(safe-area-inset-bottom)); right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 999; transition: bottom var(--transition-speed-normal) ease, opacity 0.3s ease; }
body.no-scroll .floating-buttons-modern { opacity: 0; pointer-events: none; } /* Esconder botões quando modal/sheet aberto */
.floating-buttons-modern .floating-btn { display: flex; align-items: center; justify-content: center; width: 55px; height: 55px; border-radius: 50%; color: #fff; text-decoration: none; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25); transition: all 0.3s ease; position: relative; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.2); }
.floating-buttons-modern .floating-btn:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); }
.floating-buttons-modern .floating-btn i { font-size: 1.4rem; line-height: 1; }
.floating-buttons-modern .floating-btn-label { position: absolute; right: 65px; background-color: rgba(0, 0, 0, 0.85); backdrop-filter: blur(5px); color: #fff; padding: 6px 12px; border-radius: var(--border-radius-md); font-size: 0.8rem; white-space: nowrap; opacity: 0; visibility: hidden; transition: all 0.3s ease; transform: translateX(10px); pointer-events: none; }
.floating-buttons-modern .floating-btn:hover .floating-btn-label { opacity: 1; visibility: visible; transform: translateX(0); }
.floating-buttons-modern .whatsapp { background-color: rgba(37, 211, 102, 0.9); }
.floating-buttons-modern .schedule { background-color: rgba(228, 5, 33, 0.9); }
.floating-buttons-modern .top { background-color: rgba(51, 51, 51, 0.9); opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0s 0.3s; }
.floating-buttons-modern .top.visible { opacity: 1; visibility: visible; transition: opacity 0.3s, visibility 0s 0s; }


/* --- Bottom Navigation (Mobile - Fundo Branco) --- */
.app-bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%;
    height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
    background-color: var(--bg-light-secondary); /* FUNDO BRANCO */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1); /* Sombra ajustada */
    display: flex; justify-content: space-around; align-items: flex-start;
    padding: 8px 5px env(safe-area-inset-bottom); z-index: 1020;
    border-top: 1px solid var(--border-light); /* BORDA CLARA */
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.app-bottom-nav.footer-nav-hidden { /* Esconder quando menu hamburger está aberto */
    transform: translateY(100%); opacity: 0; pointer-events: none;
}
.app-nav-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: none; border: none;
    color: var(--text-dark-secondary); /* TEXTO CINZA ESCURO PADRÃO */
    font-family: var(--font-primary); font-size: 0.7rem; font-weight: 500;
    text-align: center; padding: 5px; flex: 1; height: 100%;
    transition: color var(--transition-speed-fast) ease, transform var(--transition-speed-fast) ease; position: relative;
}
.app-nav-btn i { font-size: 1.4rem; margin-bottom: 4px; transition: transform 0.2s ease-out; }
.app-nav-btn span { line-height: 1.2; }
.app-nav-btn:hover { color: var(--text-dark-primary); } /* HOVER TEXTO PRETO */
.app-nav-btn:active i { transform: scale(0.9); }
.app-nav-btn.active { color: var(--honda-red); font-weight: 600; } /* ATIVO VERMELHO */
.app-nav-btn.active i { transform: scale(1.1); }


/* --- Bottom Sheet (Base e Variações - FORÇADO BRANCO) --- */
.sheet-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 1050; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0s 0.4s; cursor: pointer; }
.sheet-overlay.active { opacity: 1; visibility: visible; transition: opacity 0.4s ease, visibility 0s 0s; }
.sheet-container {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--bg-light-secondary); /* FUNDO BRANCO PADRÃO */
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2); /* Sombra ajustada */
    max-height: 85vh; overflow: hidden; z-index: 1051;
    transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--border-light); /* Borda clara */
    display: flex; flex-direction: column;
    color: var(--text-dark-primary); /* TEXTO ESCURO PADRÃO */
}
/* Força o tema claro mesmo se o botão pedir escuro (para consistência) */
.sheet-container.dark-sheet { background: var(--bg-light-secondary) !important; color: var(--text-dark-primary) !important; border-top: 1px solid var(--border-light) !important; }
.sheet-container.dark-sheet .sheet-header { border-bottom: 1px solid var(--border-light) !important; cursor: grab; }
.sheet-container.dark-sheet .sheet-header::before { background-color: rgba(0, 0, 0, 0.2) !important; } /* Handle escuro */
.sheet-container.dark-sheet .sheet-title { color: var(--text-dark-primary) !important; }
.sheet-container.dark-sheet .sheet-title .h-black { color: var(--text-dark-primary) !important; } /* H escuro */
.sheet-container.dark-sheet .sheet-close { color: var(--text-dark-secondary) !important; }
.sheet-container.dark-sheet .sheet-close:hover { color: var(--honda-red) !important; }
.sheet-container.dark-sheet .sheet-intro { color: var(--text-dark-secondary) !important; }
.sheet-container.dark-sheet .form-input, .sheet-container.dark-sheet .form-select, .sheet-container.dark-sheet .form-textarea { background-color: #fff !important; border: 1px solid #ced4da !important; color: var(--text-dark-primary) !important; }
.sheet-container.dark-sheet .form-input::placeholder, .sheet-container.dark-sheet .form-textarea::placeholder { color: var(--text-dark-secondary) !important; opacity: 0.7 !important; }
.sheet-container.dark-sheet .form-input:focus, .sheet-container.dark-sheet .form-select:focus, .sheet-container.dark-sheet .form-textarea:focus { border-color: var(--honda-red) !important; box-shadow: 0 0 0 3px rgba(228, 5, 33, 0.15) !important; background-color: #fff !important; }
.sheet-container.dark-sheet .form-label { color: var(--text-dark-secondary) !important; }
.sheet-container.dark-sheet .form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23495057' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E") !important; /* Seta escura */ }
.sheet-container.dark-sheet .form-select.select-value-chosen { color: var(--text-dark-primary) !important; border-color: #adb5bd !important; }
.sheet-container.dark-sheet .form-select:focus.select-value-chosen { border-color: var(--honda-red) !important; }
.sheet-container.dark-sheet .form-privacy label, .sheet-container.dark-sheet .form-privacy a { color: var(--text-dark-secondary) !important; font-size: 0.8rem; }
.sheet-container.dark-sheet .form-privacy a { color: var(--honda-red) !important; }
.sheet-container.dark-sheet .form-trigger-text { color: var(--text-dark-secondary) !important; background: rgba(0,0,0,0.03) !important; }
.sheet-container.dark-sheet #prompt-model-image { border: 1px solid var(--border-light) !important; background-color: rgba(0,0,0,0.03) !important; }
.sheet-container.dark-sheet .btn-minimal { color: var(--text-dark-secondary) !important; }
.sheet-container.dark-sheet .btn-minimal:hover { color: var(--text-dark-primary) !important; }
/* Ajustes específicos para Contact Sheet (forçado claro) */
#sheet-contact.dark-sheet .sheet-contact-item { background-color: rgba(0, 0, 0, 0.03) !important; border: 1px solid var(--border-light) !important; color: var(--text-dark-primary) !important; }
#sheet-contact.dark-sheet .sheet-contact-item:hover:not(.no-hover):not(.map) { background-color: rgba(0, 0, 0, 0.06) !important; }
#sheet-contact.dark-sheet .sheet-contact-item h4 { color: var(--text-dark-primary) !important; }
#sheet-contact.dark-sheet .sheet-contact-item p { color: var(--text-dark-secondary) !important; }
#sheet-contact.dark-sheet .sheet-contact-item .arrow { color: var(--text-dark-secondary) !important; }
#sheet-contact.dark-sheet #sheet-contact-location-details .sheet-title { color: var(--text-dark-primary) !important; }
#sheet-contact.dark-sheet #sheet-contact-location-details .location-address-card { background: rgba(0,0,0,0.03) !important; }
#sheet-contact.dark-sheet #sheet-contact-location-details .location-address-card p { color: var(--text-dark-primary) !important; }
#sheet-contact.dark-sheet #sheet-contact-location-details .location-address-card span { color: var(--text-dark-secondary) !important; }
#sheet-contact.dark-sheet .sheet-map-actions a { color: var(--text-dark-primary) !important; }
#sheet-contact.dark-sheet .sheet-map-actions a span { color: var(--text-dark-secondary) !important; }
#sheet-contact.dark-sheet #back-to-contact-options-btn { color: var(--text-dark-secondary) !important; }
#sheet-contact.dark-sheet .sheet-business-hours { color: var(--text-dark-secondary) !important; border-top: 1px solid var(--border-light) !important;}

/* Estilos Gerais Sheet (Tema Claro padrão) */
.sheet-overlay.active .sheet-container { transform: translateY(0); }
.sheet-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--border-light); position: relative; flex-shrink: 0; cursor: grab; user-select: none; -webkit-user-select: none; }
.sheet-header::before { /* Handle */ content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 40px; height: 4px; background-color: rgba(0, 0, 0, 0.2); border-radius: 2px; }
.sheet-title { font-size: 1.2rem; font-weight: 600; color: var(--text-dark-primary); margin: 0; flex-grow: 1; text-align: center; padding: 0 40px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sheet-title .h-black { color: var(--text-dark-primary) !important; } /* H escuro */
.sheet-close { font-size: 1.8rem; font-weight: lighter; color: var(--text-dark-secondary); background: none; border: none; cursor: pointer; line-height: 1; padding: 5px; transition: color var(--transition-speed-fast) ease; position: absolute; right: 15px; top: 50%; transform: translateY(-50%); }
.sheet-close:hover { color: var(--honda-red); }
.sheet-content { padding: 20px 20px calc(20px + env(safe-area-inset-bottom)); overflow-y: auto; flex-grow: 1; }
.sheet-intro { font-size: 0.95rem; color: var(--text-dark-secondary); margin-bottom: 20px; text-align: center; }
/* Forms no Sheet (Tema Claro padrão) */
.sheet-container .form-input, .sheet-container .form-select, .sheet-container .form-textarea { background-color: #fff; border: 1px solid #ced4da; color: var(--text-dark-primary); }
.sheet-container .form-input::placeholder, .sheet-container .form-textarea::placeholder { color: var(--text-dark-secondary); opacity: 0.7; }
.sheet-container .form-input:focus, .sheet-container .form-select:focus, .sheet-container .form-textarea:focus { border-color: var(--honda-red); box-shadow: 0 0 0 3px rgba(228, 5, 33, 0.15); background-color: #fff; }
.sheet-container .form-label { color: var(--text-dark-secondary); font-size: 0.9rem; }
.sheet-container .form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23495057' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"); /* Seta escura */ }
.sheet-container .form-select.select-value-chosen { color: var(--text-dark-primary) !important; font-weight: normal; border-color: #adb5bd; }
.sheet-container .form-select:focus.select-value-chosen { border-color: var(--honda-red); }
.sheet-container .form-privacy label, .sheet-container .form-privacy a { color: var(--text-dark-secondary); font-size: 0.8rem; }
.sheet-container .form-privacy a { color: var(--honda-red); }
.sheet-container .form-group { margin-bottom: 15px; }
.sheet-container .btn-whatsapp-cta { margin-top: 15px; width: 100%; }
.sheet-container .btn-minimal { color: var(--text-dark-secondary); }
.sheet-container .btn-minimal:hover { color: var(--text-dark-primary); }


/* --- Sheet de Serviços Específica (Forçada Clara) --- */
#sheet-services .initial-service-item, #sheet-services .revision-list-item { background-color: var(--bg-light-primary) !important; border: 1px solid var(--border-light) !important; color: var(--text-dark-primary) !important; }
#sheet-services .initial-service-item:hover, #sheet-services .revision-list-item:hover { background-color: rgba(228, 5, 33, 0.08) !important; border-color: rgba(228, 5, 33, 0.3) !important; }
#sheet-services #revision-list-container, #sheet-services #service-contact-prompt { border-top: 1px solid var(--border-light) !important; }
#sheet-services #prompt-service-details { background-color: rgba(0,0,0,0.03) !important; border-left: 4px solid var(--honda-red) !important; }
#sheet-services #prompt-service-icon { color: var(--honda-red) !important; }
#sheet-services #selected-service-display { color: var(--honda-red) !important; }
#sheet-services #prompt-service-description { color: var(--text-dark-secondary) !important; }
/* Estrutura Sheet Serviços */
#initial-service-view { display: block; }
.initial-service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 12px; margin-bottom: 25px; }
.initial-service-item { border-radius: var(--border-radius-md); padding: 18px 10px; text-align: center; transition: background-color var(--transition-speed-fast) ease, transform var(--transition-speed-fast) ease; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100px; }
.initial-service-item h4 { font-size: 0.8rem; font-weight: 500; margin: 0; line-height: 1.3; }
.initial-service-item i { font-size: 2rem; margin-bottom: 10px; display: block; transition: color var(--transition-speed-fast) ease; }
/* Cores Ícones Grid Inicial Serviços */
#sheet-services .initial-service-grid .initial-service-item:nth-child(5n + 1) i { color: var(--honda-red) !important; }
#sheet-services .initial-service-grid .initial-service-item:nth-child(5n + 2) i { color: var(--accent-blue) !important; }
#sheet-services .initial-service-grid .initial-service-item:nth-child(5n + 3) i { color: var(--accent-green) !important; }
#sheet-services .initial-service-grid .initial-service-item:nth-child(5n + 4) i { color: var(--accent-gold) !important; }
#sheet-services .initial-service-grid .initial-service-item:nth-child(5n + 5) i { color: #6f42c1 !important; /* Roxo */ }
/* Lista Revisão */
#revision-list-container { display: none; margin-top: 20px; padding-top: 20px; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.revision-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 15px; margin-bottom: 20px; }
.revision-list-item { border-radius: var(--border-radius-md); padding: 18px 15px; text-align: center; transition: background-color var(--transition-speed-fast) ease, transform var(--transition-speed-fast) ease; cursor: pointer; font-size: 0.95rem; font-weight: 500; }
.revision-list-item i { display: block; font-size: 1.5rem; margin-bottom: 8px; transition: color var(--transition-speed-fast) ease; }
/* Cores Ícones Grid Revisão */
#sheet-services .revision-list-grid .revision-list-item:nth-child(5n + 1) i { color: var(--honda-red) !important; }
#sheet-services .revision-list-grid .revision-list-item:nth-child(5n + 2) i { color: var(--accent-blue) !important; }
#sheet-services .revision-list-grid .revision-list-item:nth-child(5n + 3) i { color: var(--accent-green) !important; }
#sheet-services .revision-list-grid .revision-list-item:nth-child(5n + 4) i { color: var(--accent-gold) !important; }
#sheet-services .revision-list-grid .revision-list-item:nth-child(5n + 5) i { color: #6f42c1 !important; /* Roxo */ }
/* Prompt Contato Serviço */
#service-contact-prompt { display: none; margin-top: 20px; padding-top: 20px; animation: fadeIn 0.5s ease; }
#prompt-service-details { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; padding: 18px; border-radius: var(--border-radius-md); }
#prompt-service-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 3px; width: 35px; text-align: center;}
#prompt-service-description { font-size: 0.9rem; line-height: 1.6; margin: 0; flex-grow: 1;}
#back-to-previous-service-view-btn, #back-to-services-btn { display: block; margin: 15px auto 0; text-align: center; }


/* --- Sheet Contato por Modelo (Forçada Clara) --- */
#sheet-model-contact .sheet-content { padding-top: 15px; }
#prompt-model-image { display: block; margin: 0 auto 15px auto; max-height: 150px; height: auto; width: auto; max-width: 80%; border-radius: var(--border-radius-md); object-fit: contain; }
#prompt-model-name-display { text-align: center; font-weight: 600; color: var(--honda-red); margin-bottom: 20px; font-size: 1.4rem; }
.form-trigger-text { font-size: 0.9rem; text-align: center; margin-bottom: 15px; font-style: italic; line-height: 1.5; padding: 10px; border-radius: var(--border-radius-sm); }
.form-trigger-text strong { color: var(--honda-red); font-weight: 600; }


/* --- Sheet Agendamento (Forçada Clara) --- */
#sheet-schedule .sheet-content { padding-top: 10px; }


/* --- Sheet Contato (Forçada Clara) --- */
.sheet-contact-options { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
.sheet-contact-item { display: flex; align-items: center; padding: 18px; border-radius: var(--border-radius-md); transition: background-color var(--transition-speed-fast) ease, transform var(--transition-speed-fast) ease; position: relative; text-align: left; }
.sheet-contact-item > i:first-child { font-size: 1.8rem; margin-right: 20px; width: 40px; text-align: center; flex-shrink: 0; line-height: 1.4; }
.sheet-contact-item.whatsapp > i:first-child { color: var(--whatsapp-green); }
.sheet-contact-item.phone > i:first-child { color: var(--accent-blue); }
.sheet-contact-item.email > i:first-child { color: var(--accent-gold); }
.sheet-contact-item.map > i:first-child { color: var(--honda-red); }
.sheet-contact-item div { flex-grow: 1; }
.sheet-contact-item h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 3px; line-height: 1.3; }
.sheet-contact-item p { font-size: 0.85rem; margin: 0; line-height: 1.4; word-break: break-word; }
.sheet-contact-item .arrow { font-size: 1rem; margin-left: 10px; opacity: 0.7; align-self: center; }
/* Detalhes Localização */
#sheet-contact-location-details { display: none; animation: fadeIn 0.5s ease; }
#sheet-contact-location-details .sheet-title { font-weight: 600; margin-bottom: 15px; font-size: 1.1rem; text-align: center; }
#sheet-contact-location-details .location-address-card { border: none; margin-bottom: 25px; padding: 20px; display: flex; align-items: flex-start; border-radius: var(--border-radius-md); border-left: 4px solid var(--honda-red); }
#sheet-contact-location-details .location-address-card i { color: var(--honda-red); font-size: 1.7rem; margin-right: 18px; margin-top: 4px; width: 30px; text-align: center; flex-shrink: 0; }
#sheet-contact-location-details .location-address-card p { font-weight: 500; font-size: 0.95rem; line-height: 1.6; margin: 0; }
#sheet-contact-location-details .location-address-card span { display: block; font-size: 0.8rem; margin-top: 5px; }
.sheet-map-actions { display: flex; gap: 30px; margin-bottom: 25px; justify-content: center; flex-wrap: wrap; }
.sheet-map-actions a { font-size: 1.9rem; transition: color 0.3s ease, transform 0.3s ease; display: inline-flex; flex-direction: column; align-items: center; text-align: center; padding: 8px; }
.sheet-map-actions a span { font-size: 0.8rem; margin-top: 8px; font-weight: 500; }
.sheet-map-actions a:hover { transform: scale(1.1); }
.sheet-map-actions a:hover span { color: var(--honda-red); }
.sheet-map-actions i.fa-google { color: #4285F4; } .sheet-map-actions a:hover i.fa-google { color: #4285F4; }
.sheet-map-actions i.fa-waze { color: #33ccff; } .sheet-map-actions a:hover i.fa-waze { color: #33ccff; }
#back-to-contact-options-btn { display: inline-flex; align-items: center; margin: 0 auto; padding: 10px 18px; font-size: 0.9rem; }
.sheet-business-hours { text-align: center; font-size: 0.9rem; padding-top: 20px; margin-top: 25px; }


/* --- Voice Input Modal (Fundo Branco) --- */
#voice-input-modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.96); /* Fundo branco translúcido */
    z-index: 1100; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    opacity: 0; transition: opacity 0.3s ease; padding: 20px;
}
#voice-input-modal.visible { display: flex; opacity: 1; }
#voice-talking-icon { font-size: 6rem; color: var(--honda-red); margin-bottom: 35px; position: relative; }
#voice-talking-icon.listening::before, #voice-talking-icon.listening::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border: 2px solid var(--honda-red); border-radius: 50%; opacity: 0.6; animation: wave 1.8s infinite ease-out; }
#voice-talking-icon.listening::after { animation-delay: 0.6s; }
@keyframes wave { 0% { width: 100%; height: 100%; opacity: 0.6; } 100% { width: 200%; height: 200%; opacity: 0; } }
#voice-talking-icon i { position: relative; z-index: 1; }
#close-voice-modal { position: absolute; top: 25px; right: 25px; font-size: 2rem; line-height: 1; color: var(--text-dark-secondary); background: none; border: none; cursor: pointer; transition: color 0.3s ease; z-index: 1110; }
#close-voice-modal:hover { color: var(--honda-red); }
#modal-mic-btn:disabled { background-color: #adb5bd; cursor: not-allowed; opacity: 0.7; border-color: transparent; }
#modal-mic-btn:disabled:hover { transform: none; box-shadow: none; }
#voice-modal-title { color: var(--text-dark-primary); margin-bottom: 40px; font-size: 1.2rem; font-weight: 400; }
#voice-recognition-status { color: var(--text-dark-secondary); margin-top: 25px; min-height: 20px; font-style: italic; font-size: 1.1rem; }


/* --- Video Modal (Fundo Escuro) --- */
.video-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.88); z-index: 1200; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0s 0.4s; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); cursor: pointer; }
.video-modal-overlay.visible { opacity: 1; visibility: visible; transition: opacity 0.4s ease, visibility 0s 0s; }
.video-modal-content { position: relative; background-color: #000; padding: 0; border-radius: var(--border-radius-lg); box-shadow: 0 10px 40px rgba(0,0,0,0.5); width: 90%; height: auto; max-width: 1100px; max-height: 90vh; overflow: hidden; cursor: default; transform: scale(0.8); opacity: 0; transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.4s ease; }
.video-modal-overlay.visible .video-modal-content { transform: scale(1); opacity: 1; }
.video-modal-close { position: absolute; top: -15px; right: -15px; width: 38px; height: 38px; line-height: 38px; text-align: center; font-size: 1.6rem; font-weight: bold; color: #fff; background-color: rgba(0, 0, 0, 0.7); border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; z-index: 1210; transition: background-color 0.3s ease, transform 0.3s ease; }
.video-modal-close:hover { background-color: var(--honda-red); transform: rotate(90deg); }
#video-iframe-container { width: 100%; aspect-ratio: 16 / 9; background-color: #000; }
#video-iframe-container iframe { display: block; width: 100%; height: 100%; border: none; }


/* --- Overlay Confirmação Envio (Fundo Branco) --- */
#submission-confirm-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); z-index: 1150; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0s 0.3s; }
#submission-confirm-overlay.visible { opacity: 1; visibility: visible; transition: opacity 0.3s ease, visibility 0s 0s; }
.submission-confirm-box {
    background-color: var(--bg-light-secondary); /* Fundo branco */
    color: var(--text-dark-primary); /* Texto escuro */
    padding: 30px 40px; border-radius: var(--border-radius-lg); text-align: center;
    box-shadow: var(--shadow-xl); display: flex; flex-direction: column; align-items: center; gap: 15px;
    transform: scale(0.9); transition: transform 0.3s ease;
    border: 1px solid var(--border-light); /* Borda sutil */
    max-width: 90%; width: 400px;
}
#submission-confirm-overlay.visible .submission-confirm-box { transform: scale(1); }
.submission-confirm-box i { font-size: 2.5rem; color: var(--accent-green); } /* Ícone verde */
#submission-confirm-message { font-size: 1.1rem; font-weight: 500; margin: 0; }
.submission-confirm-subtext { font-size: 0.9rem; color: var(--text-dark-secondary); /* Subtexto cinza escuro */ }


/* --- Animações de Scroll --- */
.animate-on-scroll { opacity: 0; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up { transform: translateY(50px); }
.fade-in-left { transform: translateX(-50px); }
.fade-in-right { transform: translateX(50px); }
.zoom-in { transform: scale(0.9); }
.animate-on-scroll.is-visible { opacity: 1; transform: translate(0, 0) scale(1); }


/* --- Ajustes Responsivos Globais --- */
@media (max-width: 992px) {
    :root { --header-height-mobile: 70px; }
    .header.scrolled { height: 60px; }
    h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }
    h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
    .header-container { padding: 0 3%; }
    .main-menu, .header-actions { display: none; }
    .hamburger-toggle { display: flex; }
    .hamburger-menu { max-width: 320px; }
    /* Responsividade seções específicas (algumas já tratadas dentro da seção) */
    .oil-change-section .container, .transmission-section .container, .about-section .about-container { text-align: center; }
    .oil-change-section .section-title, .transmission-section .section-title, .about-section .section-title,
    .oil-change-section .section-description, .transmission-section .section-description, .about-section .section-description, .about-content .experience-text { text-align: center; }
    .video-placeholder { margin: 30px auto 0; max-width: 550px; }
    .oil-change-content .feature-list, .transmission-content .feature-list, .about-content .feature-list { text-align: left; display: inline-block; }
    .schedule-content .section-subtitle, .schedule-content .section-title, .schedule-content .section-description { text-align: center; margin-left: auto; margin-right: auto; }
    .schedule-content .feature-item { justify-content: center; }
    .schedule-content .feature-content .feature-title, .schedule-content .feature-content .feature-description { text-align: center; }
    .schedule-container { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    /* Footer já ajustado na seção de rodapé branco */
    .initial-service-grid { grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); }
    /* Google Reviews Widget */
    .google-reviews-widget .google-reviews-slider-container { padding: 0 30px; margin: 0 -30px; }
    .google-reviews-widget .google-reviews-swiper .swiper-button-prev, .google-reviews-widget .google-reviews-swiper .swiper-button-next { width: 40px; height: 40px; }
    .google-reviews-widget .google-reviews-swiper .swiper-button-prev::after, .google-reviews-widget .google-reviews-swiper .swiper-button-next::after { font-size: 16px; }
}

@media (max-width: 768px) {
    .btn { padding: 0.7em 1.5em; font-size: 0.85rem; }
    .btn-large { padding: 0.9em 2em; font-size: 0.9rem; }
    .section { padding: clamp(50px, 8vw, 80px) 0; }
    .diagonal-container { padding: 80px 0; }
    .floating-buttons-modern { bottom: calc(var(--bottom-nav-height) + 10px + env(safe-area-inset-bottom)); right: 15px; }
    .video-placeholder { aspect-ratio: 4 / 3; max-width: 95%; margin-left: auto; margin-right: auto; }
    .video-modal-content { width: 95%; }
    .video-modal-close { top: 5px; right: 5px; width: 32px; height: 32px; line-height: 32px; font-size: 1.3rem; }
    .hamburger-menu { max-width: 280px; }
    .models-grid-quantum { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
    .model-revision-grid { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .revision-list-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
    #prompt-model-image { max-height: 120px;}
    /* Google Reviews Widget */
    .google-reviews-widget .google-reviews-header { flex-direction: column; align-items: flex-start; }
    .google-reviews-widget { padding: 20px 15px; }
    .google-reviews-widget .google-reviews-slider-container { padding: 0 5px; margin: 0 -5px; }
    .google-reviews-widget .google-reviews-swiper .swiper-button-prev { left: 5px; }
    .google-reviews-widget .google-reviews-swiper .swiper-button-next { right: 5px; }
    .google-reviews-widget .google-reviews-swiper .swiper-button-prev, .google-reviews-widget .google-reviews-swiper .swiper-button-next { width: 35px; height: 35px; background-color: rgba(42, 42, 42, 0.6); }
    .google-reviews-widget .google-reviews-swiper .swiper-button-prev::after, .google-reviews-widget .google-reviews-swiper .swiper-button-next::after { font-size: 14px; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .container { width: 95%; padding: 0 10px; }
    .hamburger-menu { max-width: 100%; padding-top: 30px;}
    .featured-services { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }
    .form-row { grid-template-columns: 1fr; }
    .contact-item { flex-direction: column; text-align: center; gap: 10px; padding: 20px; }
    .contact-icon { margin: 0 auto 10px; }
    .floating-buttons-modern .floating-btn { width: 50px; height: 50px; }
    .floating-buttons-modern .floating-btn i { font-size: 1.2rem; }
    .floating-buttons-modern .floating-btn-label { display: none; }
    :root { --bottom-nav-height: 60px; }
    .app-bottom-nav { height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom)); }
    .app-nav-btn span { font-size: 0.65rem; }
    .app-nav-btn i { font-size: 1.3rem; }
    body { padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom)); }
    .revision-list-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .initial-service-grid { grid-template-columns: repeat(2, 1fr); }
    #prompt-service-details { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
    #prompt-service-icon { margin: 0 0 5px 0; }
    .sheet-map-actions { gap: 15px; }
    .sheet-map-actions a { font-size: 1.6rem; }
    .sheet-contact-item .arrow { display: none; }
    #prompt-model-image { max-height: 100px;}
    .models-grid-quantum { gap: 20px; }
    .model-revision-grid { gap: 20px; }
    .model-card-image-area { height: 160px; }
    .model-card-content-area { padding: 20px; }
    /* Google Reviews Widget */
    .google-reviews-widget .google-overall-rating { font-size: 14px; flex-wrap: wrap; /* Allow rating details to wrap */ gap: 4px 8px; }
    .google-reviews-widget .google-overall-rating .stars { font-size: 18px; }
    .google-reviews-widget .google-overall-rating .rating-value { font-size: 16px; }
    .google-reviews-widget .write-review-btn { width: 100%; text-align: center; margin-top: 10px; padding: 12px 15px; /* Slightly bigger tap area */ }
    .google-reviews-widget .review-card-header { gap: 8px; }
    .google-reviews-widget .reviewer-avatar img { width: 35px; height: 35px; }
    .google-reviews-widget .reviewer-name { font-size: 14px; /* Smaller name on mobile */ }
    .google-reviews-widget .review-date { font-size: 11px; }
    .google-reviews-widget .google-review-card > p.review-text { font-size: 13px; /* Smaller review text on mobile */ }
    .google-reviews-widget .google-review-card { padding: 15px; /* Less padding in card */ }
}

/* --- Estilos Desktop (min-width: 993px) --- */
@media (min-width: 993px) {
    :root { --header-height-desktop: 80px; }
    .header { height: var(--header-height-desktop); }
    .header.scrolled { height: calc(var(--header-height-desktop) - 15px); }
    .hamburger-toggle { display: none; } /* Esconder hamburger */
    .hamburger-menu { display: none !important; transform: translateX(100%) !important; } /* Garantir que está escondido */
    /* Menu Principal Desktop */
    .main-menu { display: block; }
    .main-menu .menu-list { display: flex; align-items: center; list-style: none; padding: 0; margin: 0; gap: 8px; }
    .main-menu .menu-link {
        color: var(--text-dark-secondary); /* Texto cinza escuro */
        font-family: var(--font-primary); font-weight: 500; font-size: 0.9rem;
        text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 16px !important;
        position: relative; transition: color var(--transition-speed-fast) ease, background-color var(--transition-speed-fast) ease;
        border-radius: var(--border-radius-md); z-index: 1; display: inline-block; width: auto;
        border-bottom: none; text-align: center; background: none;
    }
    .main-menu .menu-link:hover { color: var(--text-dark-primary); background-color: rgba(0,0,0,0.05); } /* Hover cinza claro */
    .main-menu .menu-link.active { color: var(--honda-red); background-color: rgba(228, 5, 33, 0.08); font-weight: 600; } /* Ativo vermelho claro */
    /* Ações do Header Desktop */
    .header-actions { display: flex; align-items: center; gap: 15px; }
    .header-actions .btn-header { padding: 0.65em 1.3em; font-size: 0.85rem; }
    .header-actions .btn-header.secondary { color: var(--text-dark-secondary); border-color: var(--text-dark-secondary); }
    .header-actions .btn-header.secondary:hover { background-color: var(--text-dark-secondary); color: var(--bg-light-primary); }
    /* Esconder Barra Inferior Mobile */
    .app-bottom-nav { display: none; }
    body { padding-bottom: 0; } /* Remove padding inferior */
    /* Ajustes Bottom Sheet Desktop */
    .sheet-container { width: 600px; left: 50%; transform: translateX(-50%) translateY(100%); max-height: 80vh; border-radius: var(--border-radius-xl); }
    .sheet-overlay.active .sheet-container { transform: translateX(-50%) translateY(0); }
    /* Botões Flutuantes Desktop */
    .floating-buttons-modern { bottom: 30px; right: 30px; }
    /* Ajustes Layout Desktop */
    .video-placeholder { aspect-ratio: 16 / 9; max-width: 100%; margin: 0; }
    .revision-list-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
    .initial-service-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .initial-service-item { min-height: 110px; padding: 20px 10px; }
    .initial-service-item h4 { font-size: 0.85rem;}
    .models-grid-quantum { grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr)); gap: clamp(35px, 3vw, 45px); }
    .model-revision-grid { grid-template-columns: repeat(3, 1fr); gap: 35px; max-width: 1200px; }
     /* Google Reviews Widget Desktop */
     .google-reviews-widget .google-reviews-swiper { /* Maybe use slidesPerView: 3 directly */ }
}