/* ==========================================================================
   DESIGN SYSTEM - MALISTIKOS ELETRÔNICOS
   Cores: Vermelho, Branco, Preto (Light & Dark Themes)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root,
[data-theme="light"] {
    /* Cores Principais */
    --primary: #ff073a;
    --primary-rgb: 255, 7, 58;
    --primary-hover: #e0002e;
    --primary-glow: rgba(255, 7, 58, 0.25);
    
    /* Tons Neutros (Light Theme - Fundo Branco Padrão) */
    --bg-darker: #f4f5f9;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f9fd;
    
    /* Texto */
    --text-white: #0f172a;
    --text-light: #1e293b;
    --text-muted: #64748b;
    
    /* Bordas e Detalhes */
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(255, 7, 58, 0.35);
    --nav-bg-scrolled: rgba(255, 255, 255, 0.92);
    --map-bg: radial-gradient(circle, #f8f9fc 0%, #e2e8f0 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --card-hover-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    --scrollbar-track: #f1f5f9;
    --scrollbar-thumb: #cbd5e1;
    
    /* Configurações Gerais */
    --font-main: 'Outfit', sans-serif;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.08);
    --glow-effect: 0 0 25px var(--primary-glow);
}

[data-theme="dark"] {
    /* Tons Neutros (Dark Theme - Fundo Preto) */
    --bg-darker: #050505;
    --bg-dark: #0c0c0e;
    --bg-card: #141418;
    --bg-card-hover: #1c1c22;
    
    /* Texto */
    --text-white: #ffffff;
    --text-light: #f5f5f7;
    --text-muted: #9ea4b0;
    
    /* Bordas e Detalhes */
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 7, 58, 0.25);
    --nav-bg-scrolled: rgba(5, 5, 7, 0.85);
    --map-bg: radial-gradient(circle, rgba(20, 20, 24, 0.95) 0%, rgba(10, 10, 12, 1) 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --card-hover-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    --scrollbar-track: #050505;
    --scrollbar-thumb: #25252b;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   RESETS & CONFIGURAÇÕES GERAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #25252b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Seleção de Texto */
::selection {
    background-color: var(--primary);
    color: var(--text-white);
}

/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-white) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   BOTÕES E COMPONENTES INTERATIVOS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    gap: 10px;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 7, 58, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 7, 58, 0.15);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Badge Decorativo */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255, 7, 58, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 7, 58, 0.25);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   NAVBAR (CABEÇALHO)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--nav-bg-scrolled);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.theme-toggle-btn {
    background: rgba(255, 7, 58, 0.08);
    border: 1px solid var(--border-color);
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.08) rotate(15deg);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-img {
    transform: rotate(5deg) scale(1.05);
}

.brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.brand-name span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-item a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-item a:hover {
    color: var(--text-white);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-item a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-white);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(255, 7, 58, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.hero-glow {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 7, 58, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
    color: var(--text-white);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 7, 58, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(20px);
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow: 0 30px 60px rgba(255, 7, 58, 0.2);
    border-color: rgba(255, 7, 58, 0.4);
}

/* ==========================================================================
   PRODUTOS / CATÁLOGO SECTION
   ========================================================================== */
.products-section {
    padding: 120px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-main);
}

.filter-btn:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 24px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 7, 58, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.product-card:hover::before {
    opacity: 1;
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 7, 58, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    border: 1px solid rgba(255, 7, 58, 0.3);
    text-transform: uppercase;
}

.product-img-wrapper {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    overflow: hidden;
    padding: 6px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 15px 25px rgba(255, 7, 58, 0.25));
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
}

.price-value span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.btn-buy {
    padding: 10px 18px;
    font-size: 0.85rem;
}

/* ==========================================================================
   VANTAGENS SECTION
   ========================================================================== */
.benefits-section {
    padding: 120px 0;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
}

.benefit-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 7, 58, 0.06);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 7, 58, 0.1);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.benefit-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   LOCALIZAÇÃO SECTION (SANTA IFIGÊNIA)
   ========================================================================== */
.location-section {
    padding: 120px 0;
    background-color: var(--bg-darker);
    position: relative;
}

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

.location-info {
    max-width: 550px;
}

.location-address {
    margin-top: 30px;
}

.address-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.address-item i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 4px;
}

.address-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.address-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.location-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(20, 20, 24, 0.95) 0%, rgba(10, 10, 12, 1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.map-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
    0% { transform: translateY(0); filter: drop-shadow(0 0 0 rgba(255, 7, 58, 0)); }
    50% { transform: translateY(-8px); filter: drop-shadow(0 8px 15px var(--primary-glow)); }
    100% { transform: translateY(0); filter: drop-shadow(0 0 0 rgba(255, 7, 58, 0)); }
}

.map-placeholder h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 320px;
}

/* ==========================================================================
   FAQ SECTION (ESTILO ACORDEON)
   ========================================================================== */
.faq-section {
    padding: 120px 0;
    position: relative;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-white);
    padding: 24px 30px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: var(--transition-fast);
}

.faq-btn i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-btn.active {
    color: var(--primary);
}

.faq-btn.active i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-text {
    padding: 0 30px 24px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 20px;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-brand h3 span {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 380px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-smooth);
    animation: waPulse 2s infinite;
}

.whatsapp-floating:hover {
    background-color: #20ba5a;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   RESPONSIVIDADE E RESPONSIVE GRID MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 30px;
    }
    
    .location-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .location-info {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        display: none; /* Poderá ser implementado um toggle via menu hambúrguer */
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .location-buttons {
        flex-direction: column;
    }
    
    .location-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   FORMULÁRIO DE CONTATO & CAPTAÇÃO DE LEADS (SUPABASE)
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow-premium);
}

.contact-info h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.highlight-item i {
    font-size: 1.6rem;
    margin-top: 3px;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff073a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    cursor: pointer;
}

.form-feedback {
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 10px;
    text-align: center;
}

.form-feedback.success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

@media (max-width: 992px) {
    .contact-card {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 40px;
    }
}

/* ==========================================================================
   ANIMAÇÃO DE REVELAÇÃO (SCROLL REVEAL)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ESTILOS GOOGLE MEU NEGÓCIO & AVALIAÇÕES
   ========================================================================== */
.google-reviews-section {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px 36px;
    border-radius: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-g-logo {
    font-size: 2.5rem;
    color: #4285F4;
}

.rating-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.stars-gold {
    color: #FFC107;
    font-size: 1.2rem;
    display: flex;
    gap: 4px;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(66, 133, 244, 0.4);
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.review-source {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.btn-google {
    background: #4285F4;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-google:hover {
    background: #3367d6;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.45);
    transform: translateY(-2px);
}

.badge-google {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
