/* ===== Variáveis e Design System ===== */
:root {
    /* Paleta de Cores Batershopp (Logo) */
    --color-primary: #bf1f24; /* Vermelho Batershopp */
    --color-primary-light: #d63339;
    --color-primary-dark: #9e181c;
    
    --color-secondary: #383839; /* Cinza Escuro Batershopp */
    --color-secondary-hover: #262627;
    
    --color-bg: #f8fafc; /* Fundo principal (off-white) */
    --color-surface: #ffffff; /* Fundo de cartões */
    
    --color-text-main: #1e293b;
    --color-text-muted: #64748b;
    
    --color-border: #e2e8f0;

    /* Tipografia */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    
    /* Sombras suaves (Glassmorphism / Soft UI) */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-width: 1200px;
    --site-header-height: 170px;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ===== Componentes ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px; /* Botões arredondados modernos */
    font-weight: 500;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(191, 31, 36, 0.39);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 31, 36, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--color-bg);
    border-color: var(--color-text-muted);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(191, 31, 36, 0.1);
    color: var(--color-primary);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.site-header.compact {
    box-shadow: var(--shadow-sm);
}

.header-topbar {
    background: #0d3642;
    color: white;
    max-height: 36px;
    overflow: hidden;
    transition: max-height var(--transition-normal), opacity var(--transition-normal), transform var(--transition-normal);
}

.header-topbar-container {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-topbar-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.header-social-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.header-social-links a {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.header-social-links a:hover {
    color: #dbeafe;
}

.header-social-links i {
    font-size: 16px;
    line-height: 1;
}

.header-social-links svg {
    width: 16px;
    height: 16px;
    display: block;
}

.header-contact-bar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    max-height: 120px;
    overflow: hidden;
    transition: max-height var(--transition-normal), opacity var(--transition-normal), transform var(--transition-normal), border-color var(--transition-normal);
}

.header-contact-container {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-brand img {
    height: 48px;
    width: auto;
}

.header-contact-items {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 1.5rem;
    flex: 1;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--color-border);
    min-width: 0;
}

.header-contact-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    color: #0d3642;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-contact-icon i {
    font-size: 1.55rem;
    line-height: 1;
}

.header-contact-icon svg {
    width: 1.55rem;
    height: 1.55rem;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-contact-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.header-contact-text strong {
    font-size: 0.98rem;
    line-height: 1.2;
    color: #0d3642;
}

.header-contact-text span,
.header-contact-text a {
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.header-contact-text span a:hover,
.header-contact-text > a:hover {
    color: var(--color-primary);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition-normal);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    opacity: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-16px);
    transition: opacity var(--transition-normal), width var(--transition-normal), transform var(--transition-normal);
}

.nav-logo img {
    height: 42px;
    width: auto;
    max-width: none;
}

.navbar.scrolled {
    height: 70px;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.site-header.compact .header-topbar,
.site-header.compact .header-contact-bar {
    max-height: 0;
    opacity: 0;
    transform: translateY(-100%);
    border-color: transparent;
    pointer-events: none;
}

.site-header.compact .nav-container {
    justify-content: space-between;
}

.site-header.compact .nav-logo {
    opacity: 1;
    width: 170px;
    pointer-events: auto;
    transform: translateX(0);
}

.logo img {
    height: 40px;
    object-fit: contain;
    transition: var(--transition-normal);
}

/* Fallback if logo fails to load nicely */
#logo-img[src=""] {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--color-primary);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-fast);
}

/* ===== Hero Section ===== */
.hero {
    margin-top: var(--site-header-height);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    
    pointer-events: none;
}

.hero img.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-slogan-box {
    position: absolute;
    top: 11.5%;
    left: 4.75%;
    z-index: 18;
    width: min(42vw, 620px);
}

.hero-mascot-wrapper {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: flex;
    width: 24%;
    max-width: 360px;
    z-index: 10;
    opacity: 0;
    animation: slideInLeftElectric 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}

.hero-slogan-top,
.hero-slogan-bottom {
    margin: 0;
}

.hero-slogan-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    font-family: var(--font-display);
}

.hero-slogan-lead {
    display: block;
    max-width: none;
    font-size: clamp(1.7rem, 2.95vw, 3rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.045em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.hero-slogan-highlight {
    display: inline-block;
    max-width: none;
    margin-top: 0.15rem;
    font-size: clamp(3.1rem, 6vw, 5.7rem);
    line-height: 0.88;
    font-weight: 800;
    letter-spacing: -0.07em;
    white-space: nowrap;
    color: #cf2328;
    text-shadow: 0 14px 30px rgba(99, 9, 12, 0.28);
}

.hero-slogan-bottom {
    margin-top: 0.75rem;
    max-width: 28ch;
    font-family: var(--font-display);
    font-size: clamp(1.08rem, 1.55vw, 1.72rem);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(230, 236, 247, 0.92);
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.hero-mascot-wrapper .hero-mascot-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

#three-electricity-container {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    z-index: 20;
    pointer-events: none;
    mix-blend-mode: screen;
}

@keyframes slideInLeftElectric {
    0% {
        opacity: 0;
        transform: translateX(-150px) skewX(10deg);
        filter: drop-shadow(0 0 0 rgba(0,243,255,0));
    }
    10% {
        opacity: 1;
        transform: translateX(-100px) skewX(-10deg);
        filter: drop-shadow(0 0 20px #00f3ff) drop-shadow(0 0 40px #fff);
    }
    15% { transform: translateX(-80px); filter: drop-shadow(0 0 0 rgba(0,243,255,0)); }
    20% {
        transform: translateX(-60px) translate(5px, -5px) skewX(5deg);
        filter: drop-shadow(0 0 30px #00f3ff) drop-shadow(0 0 60px #fff);
    }
    25% { transform: translateX(-50px) translate(-5px, 5px); filter: drop-shadow(0 0 5px #00f3ff); }
    30% { transform: translateX(-40px); filter: drop-shadow(0 0 0 rgba(0,243,255,0)); }
    40% {
        transform: translateX(-20px) translate(3px, 3px);
        filter: drop-shadow(0 0 40px #00f3ff) drop-shadow(0 0 80px #fff);
    }
    45% { transform: translateX(-10px); filter: drop-shadow(0 0 0 rgba(0,243,255,0)); }
    55% { transform: translateX(-5px) translate(-2px, -2px); filter: drop-shadow(0 0 25px #00f3ff); }
    60% { transform: translateX(-2px); filter: drop-shadow(0 0 0 rgba(0,243,255,0)); }
    70% { transform: translateX(0) scale(1.05); filter: drop-shadow(0 0 50px #00f3ff); }
    80% { transform: translateX(0) scale(0.95); filter: drop-shadow(0 0 0 rgba(0,243,255,0)); }
    90% { transform: translateX(0) scale(1.02); filter: drop-shadow(0 0 15px #00f3ff); }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: drop-shadow(0 0 0 rgba(0,243,255,0));
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--color-primary);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

/* Animação flutuante para a imagem do hero */
.floating {
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(191, 31, 36, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    border-radius: 50%;
}

/* ===== Marcas Section ===== */
.brands {
    padding: 1rem 0;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
}

.brands-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

/* Máscaras de gradiente para esconder as bordas suavemente */
.brands-carousel::before,
.brands-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.brands-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--color-surface) 0%, transparent 100%);
}

.brands-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--color-surface) 0%, transparent 100%);
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

/* Pausa a animação quando o mouse estiver em cima */
.brands-track:hover {
    animation-play-state: paused;
}

.brands-slide {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem; /* Espaço antes do segundo slide começar */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo {
    height: 85px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition-normal);
    cursor: pointer;
}

.brand-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* ===== Serviços Section ===== */
.services {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--color-surface);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(191, 31, 36, 0.1);
    color: var(--color-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .icon-box {
    background-color: var(--color-primary);
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* ===== CTA Section ===== */
.cta-section {
    padding: 4rem 0;
}

.cta-container {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Decorativo interno do CTA */
.cta-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background-color: white;
    color: var(--color-primary-dark);
}

.cta-content .btn-primary:hover {
    background-color: var(--color-bg);
}

.whatsapp-float-group {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    z-index: 1100;
}

.whatsapp-float-button {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 240px;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: white;
    box-shadow: 0 14px 30px rgba(29, 168, 81, 0.28);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.whatsapp-float-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(29, 168, 81, 0.34);
    filter: brightness(1.03);
}

.whatsapp-float-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
}

.whatsapp-float-icon svg {
    width: 1.4rem;
    height: 1.4rem;
    display: block;
}

.whatsapp-float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.whatsapp-float-text strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.whatsapp-float-text small {
    font-size: 0.82rem;
    opacity: 0.95;
}

/* ===== Footer ===== */
.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 1rem;
}

.footer h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-contact-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.footer-contact-column h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-contact-column p {
    margin-bottom: 0.75rem;
}

.footer-contact-column a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.footer-contact-column a:hover {
    color: white;
}

.footer-contact-column svg {
    color: #25d366;
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
    display: block;
}

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

/* ===== Animações (Scroll Reveal) ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ===== Responsivo ===== */
@media (max-width: 992px) {
    :root {
        --site-header-height: 164px;
    }

    .header-contact-container {
        min-height: 84px;
        gap: 1rem;
    }

    .header-brand img {
        height: 42px;
    }

    .header-contact-items {
        gap: 1rem;
    }

    .header-contact-item {
        padding-left: 1rem;
    }

    .header-contact-text strong {
        font-size: 0.92rem;
    }

    .header-contact-text span,
    .header-contact-text a {
        font-size: 0.82rem;
    }

    .hero::before {
        background:
            linear-gradient(90deg, rgba(5, 10, 20, 0.9) 0%, rgba(5, 10, 20, 0.78) 24%, rgba(7, 14, 28, 0.38) 46%, rgba(7, 14, 28, 0) 66%),
            radial-gradient(circle at 22% 18%, rgba(32, 41, 61, 0.28), transparent 34%);
    }

    .hero-slogan-box {
        top: 10%;
        left: 4%;
        width: min(48vw, 460px);
    }

    .hero-mascot-wrapper {
        width: 28%;
        max-width: 280px;
    }

    .hero-slogan-lead {
        max-width: none;
        font-size: clamp(1.2rem, 2.7vw, 2.1rem);
    }

    .hero-slogan-highlight {
        max-width: none;
        font-size: clamp(2.3rem, 5.1vw, 4rem);
    }

    .hero-slogan-bottom {
        max-width: 24ch;
        font-size: clamp(0.92rem, 1.38vw, 1.22rem);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 { font-size: 2.75rem; }
    
    .hero p { margin: 0 auto 2rem; }
    
    .hero-actions { justify-content: center; }
    .trust-indicators { justify-content: center; }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --site-header-height: 80px;
    }

    .cta-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .cta-container {
        margin: 0;
    }

    .header-topbar,
    .header-contact-bar {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
        gap: 1rem;
    }

    .nav-logo {
        opacity: 1;
        width: 150px;
        pointer-events: auto;
        transform: none;
    }

    .hero::before {
        background: none;
    }

    .hero-slogan-box {
        top: 8%;
        left: 4.5%;
        width: min(52vw, 250px);
    }

    .hero-mascot-wrapper {
        width: 31%;
        left: 2%;
        bottom: 11%;
    }

    .hero-slogan-lead {
        font-size: clamp(0.82rem, 2.8vw, 1.15rem);
        max-width: none;
    }

    .hero-slogan-highlight {
        max-width: none;
        font-size: clamp(1.5rem, 5vw, 2.15rem);
    }

    .hero-slogan-bottom {
        margin-top: 0.35rem;
        max-width: 20ch;
        font-size: clamp(0.58rem, 2.05vw, 0.82rem);
    }

    .nav-links, .nav-btn {
        display: none;
    }

    .navbar {
        height: 80px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-float-group {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .whatsapp-float-button {
        min-width: 0;
        width: 100%;
        padding: 0.7rem 0.75rem;
        gap: 0.55rem;
    }

    .whatsapp-float-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .whatsapp-float-icon i {
        font-size: 1.2rem;
    }

    .whatsapp-float-text strong {
        font-size: 0.84rem;
    }

    .whatsapp-float-text small {
        font-size: 0.72rem;
    }
}
