/* -------------------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ------------------------------------------------------------- */
:root {
    /* Color Palette */
    --primary: #0D2B6B;
    --primary-rgb: 13, 43, 107;
    --primary-light: #1A3E8A;
    --primary-dark: #07173D;
    
    --accent: #F5A623;
    --accent-rgb: 245, 166, 35;
    --accent-hover: #D98E16;
    
    --text-main: #2D3748;
    --text-muted: #718096;
    --text-light: #A0AEC0;
    
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-dark: #0A1128;
    --bg-border: #E2E8F0;
    
    --success: #38A169;
    --success-light: #C6F6D5;
    
    /* Layout Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 30px 60px rgba(13, 43, 107, 0.12);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------
   BASE RESET & STANDARD STYLES
   ------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Helper Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-light {
    background-color: var(--bg-light);
}

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

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

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

.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mr-2 { margin-right: 0.5rem; }

.font-weight-bold {
    font-weight: 700;
}

/* -------------------------------------------------------------
   GRID SYSTEMS
   ------------------------------------------------------------- */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

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

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

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

/* -------------------------------------------------------------
   BUTTON SYSTEM
   ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

/* -------------------------------------------------------------
   TOPBAR
   ------------------------------------------------------------- */
.topbar {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-info i {
    color: var(--accent);
}

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

.topbar-social a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .topbar {
        display: none; /* Oculta em telas pequenas para economizar espaço vertical */
    }
}

/* -------------------------------------------------------------
   HEADER & NAVIGATION
   ------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--bg-border);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-img-wrapper {
    background-color: var(--bg-white);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.logo-white .logo-img {
    height: 44px;
}

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

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-title .logo-sub {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    letter-spacing: 2px;
}

.logo-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

.logo-white .logo-title { color: var(--bg-white); }
.logo-white .logo-tag { color: var(--text-light); }

/* Navigation Links */
.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: var(--transition);
    border-radius: var(--radius-full);
}

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

/* Header WhatsApp Button */
.btn-whatsapp-header {
    background-color: #25D366;
    color: var(--bg-white);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-whatsapp-header:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Hamburger menu button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .hamburger-btn {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 1050;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    /* Morphing Hamburger */
    .hamburger-btn.open .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger-btn.open .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.open .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 120px 0;
    background-image: url('hero_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 43, 107, 0.95) 0%, rgba(10, 17, 40, 0.8) 100%);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
}

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

.badge-google {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    color: #4285F4;
    margin-right: 8px;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.text-highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
}

/* Stats Counter */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-plus {
    font-size: 1.2rem;
    font-weight: 700;
}

.stat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* -------------------------------------------------------------
   SECTION GENERAL HEADING
   ------------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 0 auto 20px;
    border-radius: var(--radius-full);
}

.divider.align-left {
    margin: 0 0 20px 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* -------------------------------------------------------------
   DIFERENCIAIS SECTION
   ------------------------------------------------------------- */
.diferenciais-section {
    padding: 100px 0;
}

.card-diferencial {
    background-color: var(--bg-white);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-border);
    transition: var(--transition);
}

.card-diferencial:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(13, 43, 107, 0.15);
}

.card-diferencial .card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 43, 107, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.card-diferencial:hover .card-icon {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.card-diferencial .card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* -------------------------------------------------------------
   SERVIÇOS SECTION (FILTRO DINÂMICO)
   ------------------------------------------------------------- */
.servicos-section {
    padding: 100px 0;
}

/* Filter buttons styling */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.filter-btn {
    background-color: var(--bg-light);
    border: 1px solid var(--bg-border);
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

/* Card Serviço */
.card-servico {
    background-color: var(--bg-white);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    height: 100%;
}

.card-servico:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-image-box {
    height: 140px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-main-icon {
    font-size: 3.5rem;
    color: var(--accent);
    opacity: 0.9;
    transition: var(--transition);
}

.card-servico:hover .service-main-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body .card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.card-body .card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

/* Service Card Filter Animation Classes */
.card-servico.hide {
    display: none;
}

/* -------------------------------------------------------------
   MARCAS ATENDIDAS
   ------------------------------------------------------------- */
.marcas-section {
    padding: 80px 0;
}

.marcas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.marca-card {
    background-color: var(--bg-white);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    padding: 24px 48px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.marca-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.marca-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.marcas-notice {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 35px;
}

/* -------------------------------------------------------------
   COMO FUNCIONA (TIMELINE)
   ------------------------------------------------------------- */
.como-funciona-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 4px;
    height: 100%;
    background-color: var(--bg-border);
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 17px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border: 4px solid var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.timeline-num {
    position: absolute;
    top: -15px;
    right: -10px;
    width: 24px;
    height: 24px;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    background-color: var(--bg-white);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

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

/* -------------------------------------------------------------
   AVALIAÇÕES DE CLIENTES (SWIPER)
   ------------------------------------------------------------- */
.avaliacoes-section {
    padding: 100px 0;
}

.reviews-slider {
    padding: 20px 20px 60px 20px;
    overflow: hidden;
}

.review-card {
    background-color: var(--bg-white);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    height: auto;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.review-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.review-comment {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.7;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--bg-border);
    padding-top: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-avatar.bg-accent {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
}

.author-status {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Custom Swiper Controls */
.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary) !important;
    width: 40px !important;
    height: 40px !important;
    background-color: var(--bg-white);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--primary);
    color: var(--bg-white) !important;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .review-card {
        padding: 24px;
    }
    .swiper-button-next, .swiper-button-prev {
        display: none !important; /* Esconde botões em telas móveis por espaço */
    }
}

/* -------------------------------------------------------------
   SOBRE NÓS SECTION
   ------------------------------------------------------------- */
.sobre-section {
    padding: 100px 0;
}

.sobre-image {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.sobre-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.floating-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.experience-years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.experience-text {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.sobre-content p {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.sobre-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .floating-experience {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
}

/* -------------------------------------------------------------
   FAQ ACCORDION
   ------------------------------------------------------------- */
.faq-section {
    padding: 100px 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    text-align: left;
    cursor: pointer;
}

.faq-arrow {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--bg-light);
}

.faq-content p {
    padding: 24px 30px;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid var(--bg-border);
}

/* Active State Accordion */
.faq-item.active {
    border-color: var(--primary);
}

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

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

/* -------------------------------------------------------------
   MAPA & ÁREA DE ATENDIMENTO
   ------------------------------------------------------------- */
.map-section {
    padding: 100px 0;
}

.address-box {
    margin-top: 30px;
    background-color: var(--bg-light);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.address-icon {
    font-size: 2rem;
    color: var(--primary);
}

.address-details h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

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

.map-iframe-box {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bg-border);
}

/* -------------------------------------------------------------
   CONTATO SECTION & FORM
   ------------------------------------------------------------- */
.contato-section {
    padding: 100px 0;
}

.contato-intro {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.contato-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contato-item-link {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.contato-item-link:hover {
    transform: translateX(5px);
    border-color: var(--accent);
}

.contato-item-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.3rem;
}

.bg-whatsapp { background-color: #25D366; }

.contato-item-text h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.contato-item-text p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.contato-redes h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.redes-links {
    display: flex;
    gap: 12px;
}

.rede-social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.rede-social-btn:hover {
    transform: scale(1.1);
}

.rede-social-btn.fb { background-color: #1877F2; }
.rede-social-btn.ig { background-color: #E1306C; }

/* Contact Form UI */
.contato-form-box {
    background-color: var(--bg-white);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.required {
    color: #E53E3E;
}

.form-control {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(13, 43, 107, 0.1);
}

.gap-2 {
    gap: 20px;
}

@media (max-width: 768px) {
    .contato-form-box {
        padding: 24px;
    }
    .form-row.grid.grid-2 {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------
   FOOTER / RODAPÉ
   ------------------------------------------------------------- */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    border-top: 5px solid var(--accent);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (min-width: 1024px) {
    .footer-wrapper {
        grid-template-columns: 2fr 1fr 1.5fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-payments {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-payments span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-white);
    letter-spacing: 0.5px;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.pix-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.footer-links h3, .footer-contact h3 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent);
    border-radius: var(--radius-full);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0.5;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact p {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-wa-link {
    font-weight: 700;
    color: var(--bg-white);
}

.footer-wa-link:hover {
    color: var(--accent);
}

/* Footer bottom bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-wrapper {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-signature {
    font-weight: 600;
    color: var(--bg-white);
}

/* -------------------------------------------------------------
   WHATSAPP FLOATING BUTTON (PULSING)
   ------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

/* Pulsing effect */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background-color: rgba(37, 211, 102, 0.3);
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--primary-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* -------------------------------------------------------------
   SUCCESS MODAL OVERLAY
   ------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 17, 40, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--bg-border);
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
    animation: scale-up 0.5s ease-out;
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.modal-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

@keyframes scale-up {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* -------------------------------------------------------------
   LOCAL SEO EXCLUSIVE COMPONENT STYLES
   ------------------------------------------------------------- */
.condominio-badge-card {
    background-color: var(--bg-white);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.condominio-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.condominio-badge-card i {
    font-size: 2.2rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.condominio-badge-card:hover i {
    transform: scale(1.1);
}

.condominio-badge-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.marcas-premium-list {
    margin-bottom: 20px;
}

/* -------------------------------------------------------------
   RESPONSIVENESS AND MOBILE OPTIMIZATIONS
   ------------------------------------------------------------- */
@media (max-width: 576px) {
    /* Timeline Mobile layout */
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 50px;
        margin-bottom: 30px;
    }
    .timeline-icon {
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .timeline-num {
        top: -10px;
        right: -8px;
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    .timeline-content {
        padding: 16px 20px;
    }

    /* Card Diferencial Flex-row Mobile */
    .card-diferencial.flex-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
    }
    .card-diferencial.flex-row .card-icon {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    /* Container Padding */
    .container {
        padding: 0 16px;
    }

    /* Logo Mobile Scaling */
    .logo-img {
        height: 40px;
    }
    .logo-title {
        font-size: 1.1rem;
    }
    .logo-title .logo-sub {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    .logo-tag {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    /* Hero Title Mobile Scaling */
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }

    /* Brand Cards Mobile scaling */
    .marca-card {
        min-width: 130px;
        padding: 16px 20px;
    }
    .marca-name {
        font-size: 1.1rem;
    }

    /* Section Spacings */
    .diferenciais-section, 
    .servicos-section, 
    .marcas-section, 
    .como-funciona-section, 
    .avaliacoes-section, 
    .sobre-section, 
    .faq-section, 
    .map-section, 
    .contato-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
}
