/* system design tokens */
:root {
    --color-dark: #0f172a; /* Slate 900 */
    --color-slate-800: #1e293b;
    --color-slate-700: #334155;
    --color-light: #ffffff;
    --color-bg-light: #f8fafc;
    --color-primary: #03BDA0; /* Brand Cyan/Teal from logo: rgb(3, 189, 160) */
    --color-primary-hover: #0aa58c;
    --color-success: #10b981;
    --color-success-bg: #ecfdf5;
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #20ba5a;
    --font-sans: 'Outfit', sans-serif;
    --border-radius: 12px;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* global reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-slate-800);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

p {
    color: var(--color-slate-700);
}

/* Utility classes */
.text-center { text-align: center; }
.w-full { width: 100%; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-whatsapp, .btn-tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-secondary {
    background-color: var(--color-slate-800);
    color: var(--color-light);
}
.btn-secondary:hover {
    background-color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-light);
}
.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
}

.btn-tel {
    background-color: transparent;
    color: var(--color-slate-800);
    border: 2px solid var(--color-slate-800);
}
.btn-tel:hover {
    background-color: var(--color-slate-800);
    color: var(--color-light);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

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

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

.logo-img {
    height: 52px;
    width: auto;
    border-radius: 8px;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 10px rgba(3, 189, 160, 0.2);
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(3, 189, 160, 0.4);
}

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

.logo-script {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    color: var(--color-dark);
    line-height: 0.85;
    margin-bottom: -1px;
    font-weight: 700;
}

.logo-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--color-primary);
    line-height: 0.95;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a:not(.btn-primary) {
    color: var(--color-slate-700);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.main-nav a:not(.btn-primary):hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 120px;
    background: radial-gradient(circle at 10% 20%, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 1) 90%);
}

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

.hero-content .badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #fef3c7;
    color: #d97706;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

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

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.card-visual {
    background-color: var(--color-dark);
    border-radius: 16px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.card-header {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px;
    display: flex;
    gap: 8px;
}
.card-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.card-header .dot.red { background-color: #ef4444; }
.card-header .dot.yellow { background-color: #f59e0b; }
.card-header .dot.green { background-color: #10b981; }

.card-body {
    padding: 32px;
    color: var(--color-light);
}
.card-body h3 {
    color: var(--color-light);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.routes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.routes-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}
.routes-list li:last-child {
    border-bottom: none;
}
.routes-list .badge-status {
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--color-success);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
}

/* Services */
.services-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.section-title {
    max-width: 600px;
    margin: 0 auto 64px;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.section-title p {
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--color-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

/* Connection Calculator */
.connections-section {
    padding: 100px 0;
}

.connections-wrapper {
    background-color: var(--color-bg-light);
    border-radius: 24px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    box-shadow: var(--shadow);
}

@media (max-width: 992px) {
    .connections-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }
}

.connections-info h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.connections-info p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.destinations-filter-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    font-size: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #cbd5e1;
    outline: none;
    font-family: var(--font-sans);
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.search-wrapper input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(3, 189, 160, 0.15);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--color-slate-700);
}

.filter-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-badge {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    background-color: var(--color-light);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.filter-badge:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-badge.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
}

.destination-pill {
    padding: 10px 18px;
    background-color: var(--color-light);
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.destination-pill:hover {
    border-color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.destination-pill.active {
    background-color: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-dark);
}

.destination-pill.tuesday-route::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #03BDA0;
}

.destination-pill.friday-route::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #3b82f6;
}

.destination-pill.base-route::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-dark);
}

.connections-result {
    background-color: var(--color-light);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
    align-self: start;
    min-height: 400px;
}

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

.pulse-icon {
    font-size: 3rem;
    animation: pulse 2s infinite;
    margin-bottom: 16px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.dest-preview-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.dest-preview-header {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
}

.dest-preview-header h3 {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.dest-preview-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    margin-top: 8px;
}

.dest-preview-badge.tuesday {
    background-color: rgba(3, 189, 160, 0.12);
    color: #0aa58c;
}

.dest-preview-badge.friday {
    background-color: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.dest-preview-badge.base {
    background-color: rgba(15, 23, 42, 0.1);
    color: var(--color-dark);
}

.dest-preview-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-detail-item {
    font-size: 1rem;
    color: var(--color-slate-700);
}

.preview-detail-item strong {
    color: var(--color-dark);
}

.dest-preview-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.btn-map-locate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    background-color: var(--color-bg-light);
    color: var(--color-slate-800);
    border: 1px solid #cbd5e1;
}

.btn-map-locate:hover {
    background-color: var(--color-slate-800);
    color: var(--color-light);
    border-color: var(--color-slate-800);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

/* Route Dashboard Styles */
.route-dashboard {
    display: grid;
    grid-template-columns: 380px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
        "tabs map"
        "controls map";
    gap: 32px;
    background-color: var(--color-light);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.route-tabs {
    grid-area: tabs;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-controls-panel {
    grid-area: controls;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 12px;
}

/* Custom Scrollbar for Controls Panel */
.route-controls-panel::-webkit-scrollbar {
    width: 6px;
}
.route-controls-panel::-webkit-scrollbar-track {
    background: transparent;
}
.route-controls-panel::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.map-panel {
    grid-area: map;
}

@media (max-width: 992px) {
    .route-dashboard {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: 
            "tabs"
            "map"
            "controls";
        padding: 20px;
        gap: 20px;
    }
    .route-controls-panel {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
    .route-tabs {
        flex-direction: row;
        grid-area: tabs;
    }
    .route-tab-btn {
        flex: 1;
    }
    .map-panel {
        grid-area: map;
    }
}

@media (max-width: 576px) {
    .route-tabs {
        flex-direction: row;
        gap: 10px;
    }
    .tab-subtitle {
        display: none;
    }
    .route-tab-btn {
        padding: 10px 14px;
        gap: 8px;
        justify-content: center;
        border-radius: 12px;
    }
    .tab-icon {
        font-size: 1.2rem;
        padding: 4px;
        margin: 0;
        border-radius: 8px;
    }
    .tab-text strong {
        font-size: 0.95rem;
        text-align: center;
    }
}

.route-tab-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: var(--color-bg-light);
    border: 2px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.route-tab-btn.active {
    background-color: rgba(3, 189, 160, 0.08);
    border-color: var(--color-primary);
}

.route-tab-btn.active[data-route="friday"] {
    background-color: rgba(59, 130, 246, 0.08);
    border-color: #3b82f6;
}

.tab-icon {
    font-size: 1.8rem;
    padding: 8px;
    background-color: var(--color-light);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.tab-text strong {
    font-size: 1.1rem;
    color: var(--color-dark);
}

.tab-text span {
    font-size: 0.85rem;
    color: var(--color-slate-700);
}

.route-info-card {
    background-color: var(--color-bg-light);
    border-radius: 16px;
    padding: 20px;
    border-left: 4px solid var(--color-primary);
    transition: var(--transition);
}

.route-info-card.friday {
    border-left-color: #3b82f6;
}

.route-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.route-info-card p {
    font-size: 0.95rem;
    color: var(--color-slate-700);
    margin-bottom: 16px;
    line-height: 1.5;
}

.route-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-slate-800);
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-header {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}

.timeline-stops {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 20px;
    margin-left: 8px;
}

.timeline-stops::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-color: #e2e8f0;
}

.timeline-stop {
    position: relative;
    padding-bottom: 16px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-slate-700);
    transition: var(--transition);
}

.timeline-stop::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-light);
    border: 2px solid #cbd5e1;
    transition: var(--transition);
}

.timeline-stop:hover {
    color: var(--color-primary);
    font-weight: 600;
}

.timeline-stop.active {
    color: var(--color-primary);
    font-weight: 700;
}

.timeline-stop.active::before {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(3, 189, 160, 0.2);
}

/* Friday active styling override */
.friday-active .timeline-stop:hover {
    color: #3b82f6;
}

.friday-active .timeline-stop.active {
    color: #3b82f6;
}

.friday-active .timeline-stop.active::before {
    background-color: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.timeline-stop.base-headquarters {
    font-weight: 600;
    color: var(--color-dark);
}

.timeline-stop.base-headquarters::before {
    border-color: var(--color-dark);
    width: 12px;
    height: 12px;
    left: -25px;
    background-color: var(--color-dark);
}

.timeline-stop:last-child {
    padding-bottom: 0;
}

/* Map Panel */
.map-panel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

@media (max-width: 992px) {
    .map-panel {
        height: 450px;
    }
}

.map-overlay-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    pointer-events: none;
    border: 1px solid #cbd5e1;
}

.legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #0f172a;
    vertical-align: middle;
    margin-right: 4px;
}
.legend-dot.tuesday { background-color: #03BDA0; }
.legend-dot.friday { background-color: #3b82f6; }
.legend-dot.base { background-color: #0f172a; }

/* Instagram grid */
.instagram-highlights {
    padding: 100px 0;
}
.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.ig-card {
    background-color: var(--color-bg-light);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ig-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.ig-avatar {
    font-size: 1.8rem;
    background-color: var(--color-primary);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.ig-caption {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-slate-800);
    margin-bottom: 24px;
}
.ig-footer .likes {
    font-weight: 700;
    color: #ef4444;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    text-align: center;
}
.contact-wrapper h2 {
    color: var(--color-light);
    font-size: 2.8rem;
    margin-bottom: 16px;
}
.contact-wrapper p {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-buttons .btn-tel {
    border-color: var(--color-light);
    color: var(--color-light);
}
.contact-buttons .btn-tel:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
}
.address-text {
    font-size: 1rem;
    color: #cbd5e1;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    background-color: #020617;
    color: #64748b;
    border-top: 1px solid #1e293b;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile responsive styles */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .connections-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-light);
        padding: 24px;
        box-shadow: var(--shadow);
    }
    .main-nav.active {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Map Height Fix */
#dynamic-route-map {
    height: 100% !important;
    width: 100% !important;
    z-index: 1;
}

/* Hero Visual Layout and Floating Badges */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--color-light);
    aspect-ratio: 16 / 10;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper:hover img {
    transform: scale(1.04);
}

/* Floating Info Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 18px;
    border-radius: 18px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-badge:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 30px rgba(3, 189, 160, 0.25);
    border-color: rgba(3, 189, 160, 0.3);
}

.floating-badge.badge-top {
    top: -15px;
    left: 15px;
}

.floating-badge.badge-right {
    top: 45%;
    right: -25px;
    transform: translateY(-50%);
}

.floating-badge.badge-right:hover {
    transform: translate(4px, -50%) translateY(-4px);
}

.floating-badge.badge-left {
    bottom: 20px;
    left: -20px;
}

.badge-icon {
    font-size: 1.3rem;
    padding: 8px;
    background-color: var(--color-light);
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.badge-info span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-slate-700);
    font-weight: 600;
}

.badge-info strong {
    font-size: 0.9rem;
    color: var(--color-dark);
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-visual {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
    .hero-image-wrapper {
        max-width: 100%;
        aspect-ratio: 16 / 11;
    }
    .floating-badge {
        position: static;
        width: 100%;
        transform: none !important;
        box-shadow: var(--shadow);
    }
    .hero-map-card {
        position: static;
        width: 100%;
        max-width: 280px;
        margin: 15px auto 0;
        transform: none !important;
        box-shadow: var(--shadow);
    }
}

/* Social Media styling */
.footer-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #0f172a;
    color: #94a3b8;
    border: 1px solid #1e293b;
    transition: var(--transition);
}

.social-icon svg {
    transition: transform 0.3s ease;
}

.social-icon:hover {
    color: var(--color-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
}

.social-icon.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
}

.contact-socials {
    margin-top: 32px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.socials-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
}

.contact-social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 1px solid #1e293b;
    background-color: #0f172a;
    color: #cbd5e1;
    transition: var(--transition);
}

.contact-social-btn svg {
    color: #94a3b8;
    transition: var(--transition);
}

.contact-social-btn:hover {
    color: var(--color-light);
    transform: translateY(-2px);
}

.contact-social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
}

.contact-social-btn.instagram:hover svg {
    color: var(--color-light);
}

.contact-social-btn.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
}

.contact-social-btn.facebook:hover svg {
    color: var(--color-light);
}

/* Hero Cobertura Map Card Styles */
.hero-map-card {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 220px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 3px solid var(--color-light);
    z-index: 15;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-map-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 35px -5px rgba(3, 189, 160, 0.25);
    border-color: rgba(3, 189, 160, 0.4);
}

.hero-map-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.hero-map-card .map-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-slate-700);
    text-align: center;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
