        /* === ESTILOS ESPECÍFICOS DE CONTACTO.HTML === */
        main {
            padding: 140px 5% 80px;
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(180deg, rgba(0, 229, 255, 0.04) 0%, transparent 25%), linear-gradient(0deg, rgba(0, 210, 106, 0.03) 0%, transparent 20%);
            border-radius: 24px;
            position: relative;
        }

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

        main h1 {
            color: var(--dark-blue);
            font-size: 2.75rem;
            margin-bottom: 0.5rem;
            font-weight: 900;
            animation: contactFadeIn 0.6s ease-out;
        }

        main .contact-intro {
            color: #555;
            font-size: 1.1rem;
            max-width: 560px;
            margin: 0 auto;
            animation: contactFadeIn 0.6s ease-out 0.1s both;
        }

        @keyframes contactFadeIn {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 32px;
            align-items: start;
            margin-top: 2rem;
        }

        @media (max-width: 900px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }
        }

        .contact-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-card {
            display: flex;
            align-items: center;
            gap: 24px;
            text-decoration: none;
            color: inherit;
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
            border-radius: 20px;
            padding: 24px 28px;
            border: 2px solid transparent;
            box-shadow: 0 8px 32px rgba(0, 26, 51, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
        }

        .contact-card::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .contact-card:hover {
            transform: translateX(8px);
            box-shadow: 0 16px 48px rgba(0, 229, 255, 0.18), 0 8px 24px rgba(0, 26, 51, 0.1);
            border-color: rgba(0, 229, 255, 0.25);
        }

        .contact-card:hover::after {
            opacity: 1;
        }

        .contact-card:nth-child(1) {
            animation: cardReveal 0.5s ease-out 0.15s both;
        }

        .contact-card:nth-child(2) {
            animation: cardReveal 0.5s ease-out 0.25s both;
        }

        .contact-card:nth-child(3) {
            animation: cardReveal 0.5s ease-out 0.35s both;
        }

        @keyframes cardReveal {
            from {
                opacity: 0;
                transform: translateX(-24px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-card:hover {
            animation: none;
        }

        .contact-card-icon {
            width: 64px;
            height: 64px;
            min-width: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: transform 0.35s ease;
        }

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

        .contact-card.whatsapp .contact-card-icon {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
        }

        .contact-card.email .contact-card-icon {
            background: linear-gradient(135deg, #0E3563, #001a33);
            color: var(--primary);
            box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
        }

        .contact-card.phone .contact-card-icon {
            background: linear-gradient(135deg, #e91e63, #c2185b);
            color: white;
            box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
        }

        .contact-card-body {
            flex: 1;
            min-width: 0;
        }

        .contact-card h3 {
            color: var(--dark-blue);
            font-size: 1.2rem;
            margin-bottom: 4px;
            font-weight: 800;
        }

        .contact-card .contact-value {
            color: #555;
            font-weight: 600;
            font-size: 0.95rem;
            display: block;
            margin-bottom: 10px;
            transition: color 0.25s;
        }

        .contact-card:hover .contact-value {
            color: var(--dark-blue);
        }

        .contact-card .contact-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.25s, gap 0.25s;
        }

        .contact-card:hover .contact-cta {
            color: var(--secondary);
            gap: 10px;
        }

        .map-section {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 26, 51, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 2px solid rgba(0, 229, 255, 0.12);
            animation: cardReveal 0.5s ease-out 0.45s both;
        }

        .map-section-header {
            padding: 20px 24px;
            background: linear-gradient(90deg, var(--dark-blue), #002244);
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .map-section-header span {
            font-size: 1.5rem;
        }

        .map-section-header h2 {
            font-size: 1.2rem;
            font-weight: 800;
            margin: 0;
            color: var(--primary);
        }

        .map-wrap {
            position: relative;
            height: 320px;
            background: #e8eef4;
        }

        .map-wrap iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        .map-actions {
            display: flex;
            gap: 12px;
            padding: 18px 24px;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            flex-wrap: wrap;
        }

        .map-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1;
            min-width: 160px;
            justify-content: center;
        }

        .map-btn.maps {
            background: linear-gradient(135deg, #4285F4, #3367D6);
            color: white;
            box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4);
        }

        .map-btn.maps:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(66, 133, 244, 0.5);
        }

        .map-btn.waze {
            background: linear-gradient(135deg, #33ccff, #00b4d8);
            color: white;
            box-shadow: 0 4px 20px rgba(51, 204, 255, 0.35);
        }

        .map-btn.waze:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(51, 204, 255, 0.5);
        }

        /* === WhatsApp Chat Widget === */
        .wa-chat-wrapper {
            position: fixed;
            bottom: 20px;
            right: 20px;
            font-family: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            z-index: 999;
        }

        /* WhatsApp Bubble (Chat preview) */
        .wa-bubble {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 320px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            animation: slideUp 0.3s ease;
        }

        .wa-bubble.visible {
            opacity: 1;
            visibility: visible;
        }

        @keyframes slideUp {
            from {
                transform: translateY(10px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .wa-bubble-header {
            background: linear-gradient(135deg, #25D366 0%, #20BA5F 100%);
            color: white;
            padding: 16px;
            border-radius: 12px 12px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .wa-header-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .wa-header-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .wa-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }

        .wa-close:hover {
            transform: scale(1.2);
        }

        .wa-bubble-body {
            padding: 16px;
            background: white;
            border-radius: 0 0 12px 12px;
        }

        .wa-msg-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .wa-msg-container strong {
            color: #075E54;
            font-size: 0.95rem;
        }

        .wa-msg-container p {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        /* WhatsApp Main Button */
        .wa-btn {
            position: relative;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #20BA5F 100%);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            font-size: 32px;
        }

        .wa-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
        }

        .wa-btn:active {
            transform: scale(0.95);
        }

        .wa-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .wa-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #FF6B6B;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Responsive */
        @media (max-width: 480px) {
            .wa-chat-wrapper {
                bottom: 15px;
                right: 15px;
            }

            .wa-btn {
                width: 56px;
                height: 56px;
            }

            .wa-btn svg {
                width: 28px;
                height: 28px;
            }

            .wa-bubble {
                width: 280px;
                bottom: 70px;
            }
        }

        @media (max-width: 360px) {
            .wa-bubble {
                width: 260px;
                font-size: 0.9rem;
            }

            .wa-msg-container p {
                font-size: 0.85rem;
            }
        }
