/* ============================================================
   LockTop - Sistemas de Seguranca
   Premium Single-Page Website Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --primary: #1e3a5f;
    --primary-dark: #0f2440;
    --primary-light: #2a4f7a;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-height: 80px;
    --header-height-scrolled: 64px;
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

/* ---------- Utility Classes ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 14px; height: 14px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.btn--accent {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}
.btn--accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-title--left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Scroll Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .testimonials__track {
        animation: none !important;
    }
    .hero__scroll-indicator {
        animation: none !important;
    }
    .whatsapp-float {
        animation: none !important;
    }
    .map-marker--hq::after {
        animation: none !important;
    }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(15, 36, 64, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.scrolled {
    height: var(--header-height-scrolled);
    background: rgba(15, 36, 64, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo-img {
    height: 48px;
    width: auto;
    transition: height var(--transition-base);
}

.header.scrolled .header__logo-img {
    height: 36px;
}

.header__nav {
    display: none;
}

.header__nav-list {
    display: flex;
    gap: 0.25rem;
}

.header__nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.header__phone-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.header__phone-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* Hamburger */
.header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.header__hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.header__hamburger.active .header__hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.header__hamburger.active .header__hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header__hamburger.active .header__hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

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

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.mobile-menu__link {
    display: block;
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    padding: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.mobile-menu.open .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-menu__list li:nth-child(1) .mobile-menu__link { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__list li:nth-child(2) .mobile-menu__link { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__list li:nth-child(3) .mobile-menu__link { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__list li:nth-child(4) .mobile-menu__link { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu__list li:nth-child(5) .mobile-menu__link { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu__list li:nth-child(6) .mobile-menu__link { transition-delay: 0.35s; }

.mobile-menu__link:hover {
    color: var(--accent);
}

.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base) 0.4s;
}

.mobile-menu.open .mobile-menu__contact {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
}

.mobile-menu__whatsapp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--whatsapp);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(42, 79, 122, 0.3) 0%, transparent 60%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(15, 36, 64, 0.3), transparent);
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.hero__content {
    max-width: 720px;
}

.hero__title {
    font-size: clamp(2.25rem, 7vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.hero__accent {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 500px;
}

.hero__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.hero__badge-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.hero__badge-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.hero__badge-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2s infinite;
}

.hero__scroll-indicator svg {
    width: 28px;
    height: 28px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
    background: var(--accent);
    padding: 2.5rem 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.stats__inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.stat__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(15, 36, 64, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 5rem 0;
    background: var(--gray-100);
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card__badge--emergency {
    background: #fee2e2;
    color: #dc2626;
}

.service-card__badge--popular {
    background: #dbeafe;
    color: #2563eb;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.about__image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__image-badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about__image-badge-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.about__text {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about__feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about__feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(30, 58, 95, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.about__feature-icon svg {
    width: 22px;
    height: 22px;
}

.about__feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.about__feature-text {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
    padding: 5rem 0;
    background: var(--gray-100);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__placeholder {
    transform: scale(1.05);
}

.gallery__placeholder svg {
    width: 36px;
    height: 36px;
    opacity: 0.7;
}

.gallery__placeholder span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 36, 64, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 5rem 0;
    background: var(--gray-100);
    overflow: hidden;
}

.testimonials__carousel {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials__track {
    display: flex;
    gap: 1.5rem;
    animation: scrollTestimonials 40s linear infinite;
    width: max-content;
}

.testimonials__track:hover {
    animation-play-state: paused;
}

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

.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-card__stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 1rem;
}

.testimonial-card__stars .star-filled {
    width: 18px;
    height: 18px;
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.testimonial-card__name {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.testimonial-card__source {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq__item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq__item.open {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.08);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-dark);
    background: transparent;
    transition: all var(--transition-fast);
}

.faq__question:hover {
    background: var(--gray-50);
}

.faq__icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--primary);
    transition: transform var(--transition-base);
}

.faq__item.open .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 1.5rem;
}

.faq__item.open .faq__answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq__answer p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================================
   AREAS MAP
   ============================================================ */
.areas {
    padding: 5rem 0;
    background: var(--gray-100);
}

.areas__map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.areas__map {
    height: 450px;
    width: 100%;
}

/* Custom map markers */
.map-marker {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 2.5px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    position: relative;
}

.map-marker--hq {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 3px solid var(--white);
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.5);
}

.map-marker--hq::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Leaflet tooltip override */
.leaflet-tooltip {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    padding: 0.5rem 0.85rem !important;
    font-family: var(--font-family) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2) !important;
}

.leaflet-tooltip-top::before {
    border-top-color: var(--primary-dark) !important;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
}

.cta-banner__inner {
    position: relative;
    text-align: center;
}

.cta-banner__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-banner__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: 5rem 0;
    background: var(--gray-100);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact__info-icon svg {
    width: 22px;
    height: 22px;
}

.contact__info-item h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 0.15rem;
}

.contact__info-item a,
.contact__info-item p {
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.contact__info-item a:hover {
    color: var(--accent);
}

.contact__social {
    margin-top: 1rem;
}

.contact__social h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.contact__social-links {
    display: flex;
    gap: 0.75rem;
}

.contact__social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.contact__social-link:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Contact Form */
.contact__form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.contact__form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

.contact__form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: all var(--transition-fast);
    background: var(--white);
    outline: none;
}

.contact__form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.contact__form-input::placeholder {
    color: var(--gray-400);
}

.contact__form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px;
    padding-right: 2.5rem;
}

.contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--primary-dark);
    padding-top: 4rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer__logo {
    height: 44px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer__tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer__heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.footer__contact-list li svg {
    color: var(--accent);
}

.footer__contact-list a:hover {
    color: var(--accent);
}

.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
}

.footer__social a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: all var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
}

/* ============================================================
   RESPONSIVE - BREAKPOINTS
   ============================================================ */
@media (min-width: 480px) {
    .hero__badges {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats__inner {
        grid-template-columns: repeat(4, 1fr);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__features {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__form-row {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }

    .header__nav {
        display: block;
    }

    .header__phone-btn {
        display: flex;
    }

    .header__hamburger {
        display: none;
    }

    .about__inner {
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
    }

    .about__image img {
        height: 500px;
    }

    .contact__grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
    }

    .contact__form-wrapper {
        padding: 2.5rem;
    }

    .footer__inner {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
    }

    .gallery__grid {
        grid-auto-rows: 250px;
    }

    .testimonial-card {
        width: 360px;
    }
}

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

    .hero__content {
        max-width: 640px;
    }

    .hero__badges {
        max-width: 600px;
    }

    .gallery__grid {
        grid-auto-rows: 280px;
        gap: 1.25rem;
    }

    .areas__map {
        height: 520px;
    }

    .contact__form-wrapper {
        padding: 3rem;
    }
}