/* ==========================================================================
   PUNTOZERO - STYLESHEET EXTREME RESPONSIVE
   Descripción: Diseño formal, minimalista segmentado entre Móvil (App) y Desktop (Showcase).
   ========================================================================== */

/* 1. CUSTOM PROPERTIES & RESET */
:root {
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-gray-dark: #333333;
    --color-gray-light: #e6e6e6;

    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;

    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    --transition-fast: 0.2s ease-in-out;
}

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

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

body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

/* 2. ESTRUCTURA DOBLE VISTA (Mobile-First Default) */
#desktop-app {
    display: none;
}

/* --- ESTILOS VÍA MÓVIL PANTALLA COMPLETA (#mobile-app) --- */
#mobile-app {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #ffffff;
    overflow: hidden;
}

.mobile-header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--color-gray-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white);
    flex-shrink: 0;
    /* El header no debe encogerse */
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: var(--color-black);
}

/* SPA App Content (Resto de la pantalla) */
#app-content {
    flex-grow: 1;
    overflow-y: auto;
    position: relative;
    background-color: #fafafa;
}

/* Manejo de Vistas */
.view {
    display: none;
    will-change: transform, opacity;
    /* Prepara la GPU del móvil */
    padding-bottom: 2rem;
}

.active-view {
    display: block !important;
    animation: appTransition 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes appTransition {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeUpItem {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.active-view .hero-intro h2 {
    animation: fadeUpItem 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

.active-view .hero-intro p {
    animation: fadeUpItem 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.active-view .cards-grid {
    animation: fadeUpItem 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

/* Mobile Hero Intro */
.hero-intro {
    padding: 4rem 8% 3rem 8%;
    text-align: left;
    box-sizing: border-box;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-intro h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
    color: #111111;
}

.hero-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666666;
}

/* Tarjetas (Cards Grid) */
.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 8% 2rem 8%;
    box-sizing: border-box;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.23);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:active {
    transform: scale(0.98);
}



.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    line-height: 1.5;
}

/* Inner Views Styling */
.view-header {
    padding: 1.5rem 1rem 1rem;
}

.view-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.view-body {
    padding: 0 1rem 1.5rem;
}

.view-body p {
    font-size: 1rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.btn-volver {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

/* Botones de Ejemplo */
.example-btn {
    display: block;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.example-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.25;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-glade::before {
    background-image: url('../logo_glade.png');
}

.btn-victoria::before {
    background-image: url('../logo_victoria.png');
}

.example-btn:hover::before {
    opacity: 0.35;
}

.example-btn:hover,
.example-btn:active {
    background-color: #000000;
    transform: scale(0.98);
}

/* ---------- PLANES DE PRECIOS (CARRUSEL VERTICAL) ---------- */
.pricing-section-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.pricing-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 1rem 0 2rem 0;
    scrollbar-width: none;
}

.pricing-container::-webkit-scrollbar {
    display: none;
}

.pricing-card {
    scroll-snap-align: center;
    flex: 0 0 85%;
    max-width: 320px;
    background-color: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.23);
    position: relative;
}

.pricing-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    font-weight: bold;
    margin-right: 8px;
    color: var(--color-black);
}

.pricing-card.advanced {
    border: 2px solid #333333;
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #000000;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}

.btn-contratar {
    display: block;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-contratar:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-contratar:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


/* Service Hero */
.service-hero {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.service-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1rem 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
}

.service-hero-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
}

/* Services Modal Container */
.services-modal-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 2rem 0;
}

.service-modal-btn {
    width: 100%;
    text-align: center;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 1.2rem;
    cursor: pointer;
    color: var(--color-black);
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.service-modal-btn:hover {
    background-color: #fafafa;
}

.service-modal-btn:active {
    transform: scale(0.98);
}

/* Modal Emergente */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.is-open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #999;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #333;
}

/* Pricing Explanation Block */
.pricing-explanation-block {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.pricing-explanation-block h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.pricing-explanation-block p {
    font-size: 0.9rem !important;
    color: #cccccc !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-explanation-block .btn-contratar {
    background-color: #ffffff;
    color: #111111;
}

.pricing-explanation-block .btn-contratar:hover {
    background-color: #e6e6e6;
}

/* 3. ESTILOS DESKTOP SHOWCASE ( >= 1024px ) */
@media (min-width: 1024px) {
    #mobile-app {
        display: none !important;
    }

    #desktop-app {
        display: flex;
        flex-direction: column;
        height: 100vh;
        width: 100vw;
        background-color: #000000;
        color: #ffffff;
        overflow: hidden;
        position: relative;
    }

    /* Navegación Superior Premium */
    .desk-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 5%;
        position: relative;
        z-index: 20;
        /* Siempre sobre el canvas */
    }

    .desk-logo {
        font-size: 1.5rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.05em;
        color: #ffffff;
    }

    .desk-menu {
        display: flex;
        gap: 2.5rem;
        align-items: center;
    }

    .desk-menu a {
        font-size: 1rem;
        font-weight: 500;
        color: #e0e0e0;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    .desk-menu a:hover {
        color: #ffffff;
    }

    /* Sistema Dropdown Desktop */
    .dropdown {
        position: relative;
        display: inline-block;
        padding-bottom: 2rem;
        /* Crea puente interactivo invisible */
        margin-bottom: -2rem;
    }

    .dropdown-trigger {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .dropdown-trigger .arrow {
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

    /* Caja emergente del Dropdown */
    .dropdown-content {
        position: absolute;
        top: calc(100% - 1.2rem);
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background-color: rgba(17, 17, 17, 0.85);
        /* Glass oscuro */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        min-width: 260px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        /* Borde sutil Premium */
        border-radius: 12px;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        z-index: 100;
    }

    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(15px);
        /* Animación fluida hacia abajo */
    }

    .dropdown:hover .dropdown-trigger .arrow {
        transform: rotate(180deg);
    }

    .dropdown-content a {
        display: block;
        padding: 0.8rem 1.5rem;
        color: #cccccc;
        font-size: 0.95rem;
        transition: all 0.2s ease;
    }

    .dropdown-content a:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 1.8rem;
        /* Micro-interacción indentada */
    }

    /* Canvas WebGL al Fondo */
    #canvas-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    /* Navegación Desktop Views */
    .desk-view {
        display: none;
    }

    .active-desk-view {
        display: flex !important;
    }

    /* Hero Central con Texto Overlay */
    .desk-hero {
        flex-grow: 1;
        /* display: flex;  -- se maneja con .active-desk-view */
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10;
        pointer-events: none;
        /* Permite que los eventos de ratón pasen al 3D */
    }

    /* --- VISTA SERVICIOS DESKTOP --- */
    #desk-services-view {
        flex-grow: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10;
        padding: 2rem 5%;
    }

    .desk-services-container {
        max-width: 1000px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .btn-volver-desk {
        display: inline-flex;
        align-items: center;
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        padding: 0.5rem 0;
        margin-bottom: 2rem;
        transition: opacity 0.2s ease, transform 0.2s ease;
        align-self: flex-start;
    }

    .btn-volver-desk:hover {
        opacity: 0.8;
        transform: translateX(-5px);
    }

    .desk-services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
    }

    .desk-service-card {
        background-color: #111111;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 3rem;
        border-radius: 16px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        cursor: pointer;
    }

    .desk-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .desk-service-card h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .desk-service-card p {
        color: #cccccc;
        line-height: 1.6;
        font-size: 1.05rem;
    }

    /* Contenedor central de las vistas individuales */
    .desk-detail-container {
        max-width: 1000px;
        width: 100%;
        margin: 0 auto;
        padding: 5rem 5% 4rem 5%;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .desk-detail-container::-webkit-scrollbar {
        width: 6px;
    }

    .desk-detail-container::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
    }

    /* Adaptación de colores para las vistas en escritorio (Dark Mode implícito) */
    #desktop-app .desk-view {
        background-color: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto; /* Permite scroll vertical natural si el contenido es muy alto */
        overflow-x: hidden; /* Bloquea cualquier scroll horizontal indeseado */
    }

    #desktop-app .view-header h2 {
        color: #ffffff;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    #desktop-app .view-body p {
        color: #cccccc;
        font-size: 1.1rem;
    }

    #desktop-app .btn-volver {
        color: #ffffff;
        font-size: 1.1rem;
    }

    #desktop-app .pricing-section-title {
        color: #ffffff;
    }

    #desktop-app .pricing-card {
        background-color: #111111;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    #desktop-app .pricing-card h4 {
        color: #ffffff;
    }

    #desktop-app .pricing-price {
        color: #ffffff;
    }

    #desktop-app .pricing-features li {
        color: #cccccc;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #desktop-app .pricing-features li::before {
        color: #ffffff;
    }

    #desktop-app .pricing-card.advanced {
        border: 2px solid #555555;
    }

    #desktop-app .pricing-explanation-block {
        background-color: #111111;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    #desktop-app .pricing-explanation-block h3 {
        color: #ffffff;
    }

    #desktop-app .service-modal-btn {
        background: #111111;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }

    #desktop-app .service-modal-btn:hover {
        background: #222222;
    }

    /* Ocultar hero intro desk-view */
    #desk-home-view.desk-view {
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-text-overlay {
        text-align: center;
        max-width: 900px;
        padding: 0 5%;
    }

    .desk-main-title {
        font-size: clamp(3rem, 6vw, 5rem);
        /* Masivo */
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.04em;
        margin-bottom: 1.5rem;
        text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        pointer-events: none;
    }

    .desk-main-subtitle {
        font-size: 1.25rem;
        color: #cccccc;
        line-height: 1.6;
        text-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
        max-width: 700px;
        margin: 0 auto;
        pointer-events: none;
    }
}

/* =========================================
   RESETEO ABSOLUTO DEL CARRUSEL EN ESCRITORIO
   ========================================= */
@media (min-width: 1024px) {
    /* Matar scroll del padre por si acaso */
    #desktop-app .view-body {
        overflow-x: hidden !important;
    }

    /* 1. DESTRUCCIÓN VISUAL DE LA BARRA */
    #desktop-app .pricing-container::-webkit-scrollbar {
        display: none !important;
        height: 0 !important;
        width: 0 !important;
    }

    /* Forzar Cuadrícula y anular herencia móvil */
    #desktop-app .pricing-container {
        -ms-overflow-style: none !important;  /* IE y Edge */
        scrollbar-width: none !important;  /* Firefox */
        overflow: visible !important; /* Anula el contenedor de scroll */
        white-space: normal !important; /* Evita que el texto fuerce una sola línea */
        
        /* 2. RESTRICCIÓN DE ANCHO PARA QUE NO SE SALGA DE LA PANTALLA */
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-bottom: 0 !important;
    }

    /* Ajustar las tarjetas para que no empujen el contenedor */
    #desktop-app .pricing-card {
        min-width: 0 !important; /* Crucial: anula el min-width del carrusel móvil */
        width: 100% !important;
        flex: none !important; /* Mata cualquier flex-grow/shrink heredado */
        margin: 0 !important; 
        height: auto !important;
    }
}

/* =========================================
   VISTA DE CONTACTO (ESCRITORIO)
   ========================================= */
@media (min-width: 1024px) {
    .desk-contacto-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 5rem 5% 4rem 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        position: relative;
    }

    .btn-volver-contacto {
        position: absolute;
        top: 2rem;
        left: 5%;
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .btn-volver-contacto:hover {
        opacity: 0.8;
        transform: translateX(-5px);
    }

    .contacto-grid-50 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-top: 2rem;
    }

    .contacto-left h2 {
        font-family: 'Inter', sans-serif;
        font-size: 3.5rem;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.1;
        margin-bottom: 2rem;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .contacto-left p {
        font-size: 1.25rem;
        color: #cccccc;
        line-height: 1.6;
        max-width: 90%;
    }

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

    .btn-contacto-desk {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 1.5rem;
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        cursor: pointer;
        text-align: center;
    }

    .btn-wa-desk {
        background-color: #25D366;
        color: #ffffff;
        border: 1px solid rgba(37, 211, 102, 0.5);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
    }

    .btn-wa-desk:hover {
        background-color: #1ebe57;
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        transform: translateY(-3px);
    }

    .btn-ig-desk {
        background-color: transparent;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .btn-ig-desk:hover {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
    }
}