/*
Theme Name: Motoboy Ajato Premium
Theme URI: https://motoboyajato.com.br
Description: Tema premium, ultra-rápido e moderno para serviço de entregas com moto em Uberlândia. Edite tudo pelo Personalizador!
Version: 1.2.4
Author: Regis
Author URI: https://motoboyajato.com.br
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-menu, featured-images, flexible-header, full-width-template, translation-ready
Text Domain: motoboy-ajato-premium
*/
:root {
    --primary: #FF6B35;
    --primary-dark: #E55A24;
    --secondary: #1F3A93;
    --secondary-dark: #0F1F4D;
    --white: #FFFFFF;
    --glass-bg: rgba(31, 58, 147, 0.75);
    --glass-scrolled: rgba(15, 31, 77, 0.95);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: 15px;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2D2D2D;
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header - Premium Glassmorphism Redesigned */
header#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(31, 58, 147, 0.9);
    /* More solid base for legibilidade */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scrolled State */
header#mainHeader.header-scrolled {
    padding: 0.8rem 0;
    background: rgba(15, 31, 77, 0.98);
    /* Almost solid when scrolled */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Admin Bar Handling */
body.admin-bar header#mainHeader {
    top: 32px;
}

/* Container flex alignment */
header#mainHeader nav.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo - High Fidelity & Responsive */
.logo-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    z-index: 10;
}

.logo-section:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 2px;
}

/* Mobile Specific Tweaks for Logo */
@media (max-width: 480px) {
    .logo-section {
        gap: 0.5rem;
    }

    .logo-icon {
        font-size: 1.6rem;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }
}

/* Menu Desktop v4 - Modern Links */
.nav-menu {
    display: none;
    /* Hidden by default on mobile */
    gap: 2.8rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Standardized UI Foundation - Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    border-radius: 60px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    padding: 1rem 2.4rem;
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.1);
}

.btn-pill-white {
    background: var(--white);
    color: var(--secondary) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Menu Toggle - Animated Hamburger to X */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 12000;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Side Drawer - Premium Glass */
.side-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--glass-scrolled);
    backdrop-filter: blur(25px);
    z-index: 11000;
    /* acima do header e top-bar */
    padding: 6rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.4);
    border-left: 1px solid var(--glass-border);
}

.side-drawer.active {
    right: 0;
}

.side-drawer a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(30px);
}

.side-drawer.active a {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered entry for links */
.side-drawer.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.side-drawer.active a:nth-child(2) {
    transition-delay: 0.2s;
}

.side-drawer.active a:nth-child(3) {
    transition-delay: 0.3s;
}

.side-drawer.active a:nth-child(4) {
    transition-delay: 0.4s;
}

.side-drawer.active a:nth-child(5) {
    transition-delay: 0.5s;
}

.side-drawer a:hover {
    color: #FF6B35;
    padding-left: 10px;
}

.side-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10900;
    /* abaixo do drawer, acima do conteúdo */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.side-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section - Premium Overhaul */
.hero {
    padding-top: 9rem;
    /* Aumentado para evitar sobreposicao do menu fixo */
    padding-bottom: 4rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .hero {
        padding-top: 8.5rem;
        /* Ajuste fino para mobile */
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 10rem;
        padding-bottom: 8rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(31, 58, 147, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }
}

@media (min-width: 1200px) {
    .hero-text h1 {
        font-size: 3.8rem;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-text p {
        font-size: 1.25rem;
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.stat {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Image Wrapper */
.hero-image {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.hero-image .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(31, 58, 147, 0.2), transparent);
    pointer-events: none;
}

/* Services Section */
.services {
    padding: 2rem 0;
    background: #F9F9F9;
}

@media (min-width: 768px) {
    .services {
        padding: 4rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #1F3A93;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: #666666;
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card:hover {
    box-shadow: var(--shadow-premium);
    border-color: var(--primary);
    transform: translateY(-8px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-icon.orange {
    background: linear-gradient(135deg, #FF6B35, #E55A24);
    color: white;
}

.service-icon.blue {
    background: linear-gradient(135deg, #1F3A93, #0F1F4D);
    color: white;
}

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

.service-card p {
    color: #666666;
    line-height: 1.6;
}

/* Top Bar - Serviço e telefone */
.top-bar {
    background: #0F1F4D;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    display: none;
    /* escondida por padrão, exibida apenas em desktop */
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-info i {
    color: #FF6B35;
}

.top-bar-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
}

.top-bar-phone:hover {
    color: #ffffff;
}

@media (max-width: 640px) {
    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .top-bar {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
    }

    header#mainHeader {
        top: 32px;
        /* espaço para top-bar em desktop */
    }

    body.admin-bar header#mainHeader {
        top: 64px;
        /* admin bar + top-bar */
    }
}

.service-accent {
    margin-top: 1.5rem;
    height: 0.25rem;
    width: 3rem;
    background: linear-gradient(90deg, #FF6B35, #1F3A93);
    border-radius: 9999px;
    transition: width 0.3s;
}

.service-card:hover .service-accent {
    width: 100%;
}

/* Coverage Section */
.coverage {
    padding: 2rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .coverage {
        padding: 4rem 0;
    }
}

.coverage::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: #FF6B35;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(3rem);
}

.coverage::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: #1F3A93;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(3rem);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .coverage-content {
        grid-template-columns: 1fr 1.1fr;
        gap: 5rem;
    }
}

.coverage-image {
    position: relative;
    min-height: 480px;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    order: 2;
}

@media (min-width: 1024px) {
    .coverage-image {
        order: 1;
    }
}

.coverage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.coverage-text {
    order: 1;
}

@media (min-width: 1024px) {
    .coverage-text {
        order: 2;
    }
}

.coverage-text h2 {
    font-size: 2rem;
    color: #1F3A93;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .coverage-text h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .coverage-text h2 {
        font-size: 3rem;
    }
}

.coverage-text p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cities-grid {
        gap: 1rem;
    }
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #F9F9F9;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #E0E0E0;
    transition: all 0.3s;
}

.city-item:hover {
    border-color: #FF6B35;
    background: #FFF5F0;
}

.city-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #FF6B35;
    flex-shrink: 0;
}

.city-info h4 {
    font-weight: 600;
    color: #1F3A93;
    font-size: 0.875rem;
}

.city-info p {
    font-size: 0.75rem;
    color: #666666;
    margin: 0;
}

.info-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(31, 58, 147, 0.1));
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 1.5rem;
}

.info-box h4 {
    color: #1F3A93;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-box p {
    color: #666666;
    font-size: 0.875rem;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #F8F9FA;
}

.faq-item {
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FF6B35;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #1F3A93;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #FF6B35;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 2rem 0;
    background: #F9F9F9;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about {
        padding: 4rem 0;
    }
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: #FF6B35;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(3rem);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: #1F3A93;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(3rem);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1.1fr;
        gap: 5rem;
    }
}

.about-image {
    position: relative;
    min-height: 500px;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 2rem;
    color: #1F3A93;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .about-text h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .about-text h2 {
        font-size: 3rem;
    }
}

.about-text p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .highlights-grid {
        gap: 2rem;
    }
}

.highlight-card {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #E0E0E0;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .highlight-card {
        padding: 1.5rem;
    }
}

.highlight-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #FF6B35, #E55A24);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.highlight-card h3 {
    font-weight: bold;
    color: #1F3A93;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.highlight-card p {
    font-size: 0.75rem;
    color: #666666;
    margin: 0;
}

.about-box {
    background: linear-gradient(135deg, #FF6B35, #1F3A93);
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .about-box {
        padding: 2.5rem;
    }
}

.about-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.about-box p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section Redesign */
.contact {
    padding: 4rem 0;
    background: #F8F9FA;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1.2fr 1fr;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-card i {
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    color: #1F3A93;
    margin: 0;
}

.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    text-decoration: none;
}

.contact-card a:hover {
    color: #FF6B35;
}

.contact-main-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #1F3A93 100%);
    padding: 3rem;
    border-radius: 1.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-main-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-main-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Final CTA Section */
.cta-premium {
    background: linear-gradient(135deg, #FF6B35 0%, #1F3A93 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 120%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(-20deg);
    pointer-events: none;
}

.cta-premium h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-premium p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-premium .btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #FF6B35;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

footer {
    background: #0F1F4D;
    color: white;
    padding: 3rem 0 2rem 0;
    /* Reduced padding for mobile */
    position: relative;
    text-align: center;
    /* Center align for mobile default */
}

@media (min-width: 768px) {
    footer {
        padding: 5rem 0 2rem 0;
        text-align: left;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    /* Reduced gap for mobile */
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items on mobile */
}

@media (min-width: 768px) {
    .footer-section {
        align-items: flex-start;
    }
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-badge {
    width: 2.5rem;
    height: 2.5rem;
    background: #FF6B35;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 100%;
    /* Full width for mobile */
}

@media (min-width: 768px) {
    .footer-desc {
        max-width: 300px;
    }
}

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

.footer-list li {
    margin-bottom: 1rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-list a:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    /* Stack vertically on mobile */
    align-items: center;
    /* Center align */
    gap: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 480px) {
    .footer-contact-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

.footer-contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    flex-shrink: 0;
}

.footer-contact-text h4 {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.footer-contact-text p,
.footer-contact-text a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #FF6B35;
    transform: translateY(-3px);
}

/* --- MOBILE FIXES & OPTIMIZATIONS (ADDED BY AI) --- */

/* 1. Global Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* 2. Menu Visibility Fix */
.side-drawer {
    background-color: #0F1F4D !important;
    /* Force Dark Blue */
}

.side-drawer a {
    color: #ffffff !important;
}

/* 3. Mobile Typography & Spacing */
@media (max-width: 768px) {

    /* Reduce Hero Heading */
    .hero-text h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    /* Reduce Paragraph size */
    .hero-text p {
        font-size: 1rem !important;
    }

    /* Adjust Buttons */
    .btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
        white-space: normal;
        height: auto;
        min-height: 44px;
        line-height: 1.2;
    }

    .hero-content {
        gap: 2rem;
    }

    /* Hero Alignment Fix */
    /* Reduced top padding slightly to bring content up if it was too low, 
       but if user meant "too high up" (hidden), this might need increase. 
       Standardizing to 7rem (approx 112px). 
       Previous mobile was 8.5rem (136px).
       If user says "muito acima", they might mean "Too much space at the top"?
       Or "It is too high physically". 
       I will set it to 7rem. If it's still wrong, I'll adjust. */
    .hero {
        padding-top: 7rem !important;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-text p {
        font-size: 0.95rem !important;
    }

    .btn {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .side-drawer a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }

    .whatsapp-float {
        width: 3.2rem;
        height: 3.2rem;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.6rem;
    }

    /* 4. Fixes based on User Prints */
    /* Ensure Header is always sticky on mobile */
    header#mainHeader {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
    }

    /* Reduce large headings in CTAs and Section Headers */
    .cta-premium h2,
    .contact-main-cta h3,
    .section-header h2,
    .about-text h2 {
        font-size: 1.75rem !important;
        /* Was 3rem or 2rem */
        line-height: 1.25;
        word-wrap: break-word;
        /* Prevent overflow */
    }

    /* Adjust padding for CTA sections to save space */
    .cta-premium,
    .contact-main-cta {
        padding: 3rem 1.5rem !important;
    }

    .cta-premium p {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }

    /* Adjust Grid gaps for smaller screens */
    .highlights-grid {
        gap: 0.75rem !important;
    }

    .highlight-card {
        padding: 1rem !important;
    }

    /* Adjust WhatsApp Button to obstruct less */
    .whatsapp-float {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.8rem;
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: 10000;
        /* Ensure on top but below menu drawer if opened */
    }

    /* Add padding to footer to prevent WhatsApp button from covering content */
    footer {
        padding-bottom: 6rem !important;
    }
}

.service-card h3 {
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.95rem;
}

.coverage-text h2 {
    font-size: 1.5rem;
}

.coverage-text p {
    font-size: 0.95rem;
}

.cta-premium h2 {
    font-size: 2rem;
}

.cta-premium p {
    font-size: 1rem;
}

.cta-premium .btn-pill {
    padding: 0.9rem 1.6rem;
    font-size: 1rem;
}


@media (max-width: 768px) {

    /* FORCE STICKY HEADER */
    header#mainHeader,
    header#mainHeader.header-scrolled {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        background: rgba(15, 31, 77, 0.98) !important;
        /* Ensure bg is solid */
    }

    body {
        padding-top: 80px;
        /* Prevent content hiding behind fixed header */
        overflow-x: hidden;
    }

    /* Z-Index Layering Fix */
    section,
    footer,
    main,
    .hero,
    .content-wrapper,
    div:not(#mainHeader):not(.menu-toggle):not(.side-drawer) {
        z-index: 1;
        /* Force content below header */
        position: relative;
        /* Ensure z-index applies if not static */
    }

    header#mainHeader {
        z-index: 999999 !important;
        /* Maximum priority */
    }

    .side-drawer {
        z-index: 1000000 !important;
        /* Drawer above header */
    }

    /* REDUCE FONTS AGGRESSIVELY */
    h1,
    .hero-text h1 {
        font-size: 1.8rem !important;
        /* Was 2.2rem+ */
        line-height: 1.2;
    }

    h2,
    .section-header h2,
    .about-text h2,
    .cta-premium h2 {
        font-size: 1.5rem !important;
        /* Was 2rem+ */
        line-height: 1.3;
    }

    h3,
    .service-card h3,
    .contact-main-cta h3 {
        font-size: 1.2rem !important;
    }

    p,
    .hero-text p,
    .section-header p {
        font-size: 0.95rem !important;
    }

    /* COMPACT PADDING */
    .cta-premium,
    .contact-main-cta {
        padding: 2.5rem 1rem !important;
    }

    .hero {
        padding-top: 7rem !important;
        padding-bottom: 2rem !important;
    }

    .btn {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .side-drawer a {
        font-size: 1rem;
        padding: 0.7rem 0;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-image {
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .hero-image .image-wrapper,
    .hero-image img {
        max-height: 360px;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .coverage-image {
        min-height: 260px;
    }

    .about-image {
        min-height: 260px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.8rem 1rem !important;
        /* More breathing room */
        font-size: 0.9rem !important;
        white-space: normal !important;
        /* Force wrap */
        line-height: 1.25 !important;
        height: auto !important;
        min-height: 48px;
        /* Touch target size */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-image .image-wrapper,
    .hero-image img {
        max-height: 300px;
    }

    .coverage-image {
        min-height: 220px;
    }

    .about-image {
        min-height: 220px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

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

    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 6.5rem !important;
    }

    .badge {
        padding: 0.45rem 0.9rem;
        font-size: 0.85rem;
    }

    .btn,
    .btn-secondary,
    .btn-pill-white {
        font-size: 0.85rem !important;
        padding: 0.7rem 1.2rem !important;
        border-radius: 48px;
    }

    .section-header h2,
    .coverage-text h2,
    .about-text h2 {
        font-size: 1.6rem;
    }

    .section-header p,
    .coverage-text p,
    .about-text p,
    .faq-answer-content,
    .contact-card p,
    .contact-card a {
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .contact-main-cta h3 {
        font-size: 1.6rem;
    }

    .contact-main-cta p {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 6rem !important;
    }

    .hero-text h1 {
        font-size: 1.8rem !important;
    }

    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .btn,
    .btn-secondary,
    .btn-pill-white {
        font-size: 0.8rem !important;
        padding: 0.55rem 1rem !important;
        border-radius: 44px;
    }

    .side-drawer a {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    .section-header h2,
    .coverage-text h2,
    .about-text h2 {
        font-size: 1.35rem;
    }

    .section-header p,
    .coverage-text p,
    .about-text p,
    .faq-answer-content,
    .contact-card p,
    .contact-card a {
        font-size: 0.88rem;
    }

    .contact-main-cta h3 {
        font-size: 1.4rem;
    }

    .contact-main-cta p {
        font-size: 0.95rem;
    }

    .cta-premium .btn-pill {
        padding: 0.9rem 1.6rem;
        font-size: 1rem;
    }

    /* --- MOBILE MICRO-TUNING (EXTRA REDUÇÃO PARA CELULAR PEQUENO) --- */
    @media (max-width: 480px) {
        body {
            font-size: 14px;
        }

        .hero-text h1 {
            font-size: 1.35rem !important;
            line-height: 1.15;
        }

        .hero-text p {
            font-size: 0.9rem !important;
        }

        .section-header h2,
        .coverage-text h2,
        .about-text h2 {
            font-size: 1.25rem !important;
        }

        .section-header p,
        .coverage-text p,
        .about-text p {
            font-size: 0.85rem !important;
        }

        .faq-question {
            font-size: 0.95rem !important;
        }

        .faq-answer-content,
        .contact-card p,
        .contact-card a {
            font-size: 0.85rem !important;
        }

        footer {
            padding: 2.5rem 0 1.5rem 0 !important;
        }

        .footer-desc {
            font-size: 0.85rem !important;
        }

        .footer-contact-text p,
        .footer-contact-text a {
            font-size: 0.9rem !important;
        }
    }

    /* Botões 100% responsivos em telas pequenas */
    @media (max-width: 480px) {

        .btn,
        .btn-secondary,
        .btn-pill-white {
            box-sizing: border-box;
            width: 100%;
            max-width: 100%;
            padding: 0.6rem 1rem !important;
        }

        .cta-premium .btn-pill {
            box-sizing: border-box;
            width: 100%;
            max-width: 100%;
            padding: 1rem !important;
            font-size: 1rem !important;
        }

        /* Specific fix for FAQ title to be small */
        .section-header h2 {
            font-size: 1.4rem !important;
        }

        /* Ensure WhatsApp button doesn't block text */
        .whatsapp-float {
            width: 3.2rem;
            height: 3.2rem;
            bottom: 1rem;
        }
    }
}