/* --- Variables y Reset --- */
:root {
    --primary-blue: #0A2A43;
    --accent-gray: #a09c9c;
    --light-bg: #F4F4F4;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-heading: 'Montserrat', sans-serif, system-ui;
    --font-body: 'Open Sans', sans-serif, system-ui;
}

/* =========================================
   CLASES DE ACCESIBILIDAD (MEJORADAS)
   ========================================= */

/* 1. Alto Contraste (REFINADO: Negro Puro + Amarillo) */
body.access-high-contrast {
    --primary-blue: #FFFF00 !important; /* Amarillo Neón */
    --light-bg: #000000 !important;
    --text-dark: #FFFFFF !important;    /* Texto Blanco */
    background-color: #000000 !important;
    color: #FFFFFF !important;
    background-image: none !important; /* Quitamos los puntos */
}

/* Forzamos colores en elementos clave */
body.access-high-contrast .provider-card,
body.access-high-contrast .review-card,
body.access-high-contrast header,
body.access-high-contrast footer,
body.access-high-contrast .provider-info {
    background-color: #000000 !important;
    border: 2px solid #FFFF00 !important; /* Borde amarillo para definir áreas */
    color: #FFFFFF !important;
}

body.access-high-contrast a {
    color: #00FFFF !important; /* Enlaces en Cian para distinguir */
    text-decoration: underline !important;
}

body.access-high-contrast img {
    filter: grayscale(100%) contrast(150%); /* Imágenes súper contrastadas */
}
body.access-high-contrast .overlay {
    background: none !important; /* Quitamos sombras decorativas */
}

/* 2. Texto Grande */
body.access-large-text {
    font-size: 130% !important;
}

/* 3. MODO ENFOQUE (NUEVO: Reading Mask) */
/* 3-- MODO ENFOQUE (MEJORADO: SIGUE AL RATÓN) --- */
.reading-mask {
    display: none; /* Oculto por defecto */
    position: fixed;
    left: 0;
    width: 100%;
    height: 150px; /* Altura de la franja de lectura */
    z-index: 99999;
    pointer-events: none; /* IMPRESCINDIBLE: Permite hacer clic a través de la franja */
    
    /* El truco de la sombra gigante para oscurecer el resto */
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.85); 
    border-top: 2px solid var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    
    /* Por defecto (y en móvil) centrado */
    top: 50%;
    transform: translateY(-50%);
    
    /* Suavizar el movimiento del ratón */
    transition: top 0.1s ease-out; 
}

/* 4. Resaltar Enlaces */
body.access-highlight-links a {
    text-decoration: underline !important;
    font-weight: bold !important;
    background-color: #FFFF00 !important;
    color: #000000 !important;
    padding: 0 2px;
}

/* =========================================
   ESTILOS GENERALES
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { 
    font-family: var(--font-body); 
    color: var(--text-dark); 
    line-height: 1.6; 
    
    /* --- FONDO MODERNO REFINADO (DOT GRID) --- */
    background-color: #ffffff; /* Base blanca */
    
    /* Puntos mucho más pequeños (1px de radio) y sutiles (10% opacidad) */
    /* Usamos el RGB de tu azul oscuro #051624 */
    background-image: radial-gradient(rgba(5, 22, 36, 0.1) 1px, transparent 2px);
    
    /* Mucho más espaciados (50px entre cada punto) para limpiar el diseño */
    background-size: 50px 50px; 
    
    overflow-x: hidden; 
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

/* Utilidades */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); } 
.bg-blue { background-color: var(--primary-blue); }
.bg-dark-blue { background-color: #051624; color: white; }
.text-white { color: var(--text-light); }
.text-center { text-align: center; }
.mb-large { margin-bottom: 2rem; }

/* Títulos */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--primary-blue); }
.section-title { font-size: 2.2rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.section-subtitle { margin-bottom: 40px; color: #666; }

/* Botones */
.btn-primary, .btn-white, .btn-nav { display: inline-block; padding: 12px 30px; text-decoration: none; font-weight: 600; border: 2px solid transparent; transition: all 0.3s ease; }
.btn-primary { background-color: var(--primary-blue); color: var(--text-light); }
.btn-primary:hover { background-color: #0f3554; border-color: #15456b; }
.btn-white { background-color: transparent; border: 2px solid var(--text-light); color: var(--text-light); }
.btn-white:hover { background-color: var(--text-light); color: var(--primary-blue); }

/* --- Header --- */
header { background-color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; height: 70px; display: flex; align-items: center; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { list-style: none; display: flex; gap: 25px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.95rem; position: relative; padding-bottom: 5px; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary-blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 50%; background-color: var(--primary-blue); transition: all 0.3s ease; transform: translateX(-50%); }

/* Botón del menú (Contacto) */
.nav-links .btn-nav { background-color: var(--primary-blue); color: white; padding: 8px 25px; border-radius: 4px; border: 2px solid var(--primary-blue); }
.nav-links .btn-nav::after { display: none; }
.nav-links .btn-nav:hover { background-color: white; color: var(--primary-blue); transform: translateY(-3px); }
.nav-links .btn-nav.active { background-color: white; color: var(--primary-blue); border: 2px solid var(--primary-blue); }

/* --- Logo --- */
.brand-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-circle { width: 45px; height: 45px; background-color: var(--primary-blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid white; box-shadow: 0 2px 5px rgba(0,0,0,0.15); }
.monogram { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.3rem; line-height: 1 !important; letter-spacing: -1px !important; transform: translate(-1px, 2px) !important; display: inline-block; }
.logo-text { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--primary-blue); }

/* --- Hero Section (Index) --- */
.hero { 
    height: 85vh; 
    min-height: 500px; 
    background-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #051624 100%); 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    margin-top: 70px; 
}

@media (min-width: 768px) { 
    .hero { 
        background-image: url("img/banner.jpg"); 
        background-size: cover; 
        background-position: center; 
    } 
}

.overlay { display: none; }
@media (min-width: 768px) { 
    .overlay { 
        display: block; 
        position: absolute; 
        top: 0; left: 0; width: 100%; height: 100%; 
        background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7)); 
        z-index: 1; 
    } 
}

.hero-content { position: relative; z-index: 2; color: white; max-width: 900px; padding: 40px 20px; }
.hero-content h1 { font-size: 3.5rem; color: #ffffff !important; margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.9); line-height: 1.2; }
.hero-content p { font-size: 1.4rem; color: #f8f8f8 !important; margin-bottom: 35px; font-weight: 500; text-shadow: 0 2px 10px rgba(0,0,0,0.9); }
@media (max-width: 768px) { .hero-content h1 { font-size: 2.2rem; } .hero-content p { font-size: 1.1rem; } }

/* --- Sobre Nosotros --- */
.about-content { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; justify-items: center; }
.about-image-container { width: 300px; height: 300px; }

.about-rectangle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(10, 42, 67, 0.15);
}

@media (min-width: 992px) {
    .about-content {
        grid-template-columns: 45% 55% !important; 
        align-items: start !important; 
        gap: 50px !important;
    }
    .about-content .about-image-container {
        width: 100%;
        height: 500px; 
        border: none;
        border-radius: 12px;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .about-content .about-image-container {
        width: 100%;
        height: 300px;
        border: none;
    }
}

.about-stats { display: flex; gap: 20px; justify-content: center; margin-top: 20px;}
.stat-box { background: white; border: 1px solid var(--accent-gray); padding: 20px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); flex: 1; }
@media (min-width: 992px) { .about-stats { justify-content: flex-start; } }


/* --- Proveedores --- */
.providers-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}

.provider-card { 
    background: white; 
    border: 1px solid var(--accent-gray); 
    display: flex; 
    flex-direction: column; 
    transition: transform 0.3s ease; 
    height: 100%; 
    overflow: hidden; 
}

.provider-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--primary-blue); 
}

.provider-logo-area { 
    background-color: #f9f9f9; 
    height: 220px; 
    padding: 30px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-bottom: none; 
}

.provider-logo-area img { 
    max-width: 80%; 
    max-height: 100%; 
    object-fit: contain; 
    filter: grayscale(100%); 
    opacity: 0.7; 
    transition: all 0.3s ease; 
}

.provider-card:hover .provider-logo-area img { 
    filter: grayscale(0%); 
    opacity: 1; 
    transform: scale(1.05); 
}

/* --- TARJETAS OSCURAS (Versión Definitiva) --- */
.provider-info { 
    padding: 25px; 
    background-color: #051624; 
    color: #ffffff;            
    flex-grow: 1;
    border-top: none; 
}

.provider-info h3 { 
    margin-top: 0;
    color: #ffffff !important; 
}

.provider-info h3 a, 
.provider-info h3 a:link, 
.provider-info h3 a:visited, 
.provider-info h3 a:active {
    color: #ffffff !important; 
    text-decoration: none;
    cursor: pointer;
}

.provider-info h3 a:hover {
    color: #ffffff !important;
    text-decoration: underline; 
    opacity: 0.9; 
}

.provider-info p { 
    color: #e0e0e0 !important; 
}


@media (min-width: 992px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .grid-2 { grid-template-columns: repeat(2, 1fr) !important; max-width: 800px; margin-left: auto; margin-right: auto; }
}


/* --- Banner Subpáginas --- */
.page-header-banner { 
    position: relative; 
    height: 350px; 
    width: 100%; 
    background-color: var(--primary-blue); 
    background: linear-gradient(135deg, var(--primary-blue) 0%, #051624 100%); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-top: 70px; 
}
@media (min-width: 768px) { 
    .page-header-banner { 
        background-image: url('img/banner.jpg'); 
        background-size: cover; 
        background-position: center; 
    } 
}
.banner-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 42, 67, 0.7); z-index: 1; }
.banner-content { position: relative; z-index: 2; text-align: center; color: white; }
.banner-content h1 { font-size: 2.5rem; text-transform: uppercase; color: white; }
.separator-line { width: 60px; height: 4px; background-color: white; margin: 15px auto; }
@media (max-width: 768px) { .page-header-banner { height: 250px; } .banner-content h1 { font-size: 1.8rem; } }

/* --- Contacto --- */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.info-list { list-style: none; margin-top: 30px; }
.info-list li { margin-bottom: 15px; font-size: 1.1rem; }
.contact-form { background: var(--light-bg); padding: 30px; border: 1px solid var(--accent-gray); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; font-family: var(--font-body); font-size: 1rem; }
.checkbox-legal { display: flex; align-items: center; gap: 10px; }
.checkbox-legal input { width: 20px; height: 20px; }
.legal-text-small { font-size: 0.75rem; color: #777; margin-bottom: 20px; }
@media (max-width: 768px) { .contact-container { grid-template-columns: 1fr; } }

/* --- Footer --- */
footer { 
    background-color: #051624; 
    color: white; 
    text-align: center; 
    padding: 20px 0; 
    font-size: 0.9rem;
    margin-top: auto; 
}

.social-icons { display: flex; gap: 20px; justify-content: center; margin-bottom: 10px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background-color: rgba(255,255,255,0.1); border-radius: 50%; color: white; font-size: 1.5rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); }

/* --- Menú Móvil --- */
.hamburger { display: none; cursor: pointer; }
.hamburger .line { width: 30px; height: 3px; background-color: var(--primary-blue); margin: 6px; transition: all 0.3s ease; }

@media screen and (max-width: 1024px) {
    header .nav-container { padding: 0 20px !important; }
    .hamburger { display: block; z-index: 2000; }
    
    .nav-links { 
        position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; 
        background-color: white; 
        display: flex; flex-direction: column; 
        padding-top: 120px; 
        transform: translateX(100%); 
        transition: transform 0.4s ease; 
        z-index: 1500; 
    }
    
    .nav-links.nav-active { transform: translateX(0%); }
    .nav-links li { width: 100%; text-align: center; margin: 15px 0; }
    .nav-links a { font-size: 1.5rem; display: block; }
    
    .hamburger.toggle .line:nth-child(1) { transform: rotate(-45deg) translate(-7px, 7px); }
    .hamburger.toggle .line:nth-child(2) { opacity: 0; }
    .hamburger.toggle .line:nth-child(3) { transform: rotate(45deg) translate(-7px, -7px); }
}

/* --- Proyectos --- */
.carousel-container { position: relative; width: 100%; max-width: 900px; margin: 0 auto; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; width: 100%; }
.carousel-slide { min-width: 100%; position: relative; }
.carousel-slide img { width: 100%; height: 500px; object-fit: cover; display: block; }
.slide-caption { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(10, 42, 67, 0.85); color: white; padding: 20px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: var(--primary-blue); color: white; border: none; padding: 15px 20px; cursor: pointer; font-size: 1.5rem; z-index: 10; }
.btn-prev { left: 0; } .btn-next { right: 0; }
@media (max-width: 768px) { .carousel-slide img { height: 300px; } }

/* Galería Horizontal */
.gallery-scroller { display: flex; overflow-x: auto; gap: 20px; padding-bottom: 20px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery-item { scroll-snap-align: start; flex: 0 0 auto; height: 400px; width: 85%; border-radius: 8px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) { .gallery-item { width: 400px; } }
.scroll-hint { text-align: center; font-size: 0.9rem; color: #888; font-style: italic; margin-top: 10px; }

/* =========================================
   WIDGET ACCESIBILIDAD
   ========================================= */
#accessibility-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; 
    z-index: 10000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    border: 2px solid white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
#accessibility-btn:hover { transform: scale(1.1); }

#accessibility-panel {
    position: fixed;
    bottom: 90px;
    left: 30px;
    width: 250px;
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 15px;
    z-index: 10000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: none; 
}
#accessibility-panel.active { display: block; animation: fadeIn 0.3s; }
#accessibility-panel h3 { font-size: 1.1rem; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 5px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.access-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Switch */
.switch { position: relative; display: inline-block; width: 40px; height: 22px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary-blue); }
input:checked + .slider:before { transform: translateX(18px); }

/* =========================================
   CLASES EXTRA
   ========================================= */
#scrollTopBtn { position: fixed; bottom: 30px; right: 30px; z-index: 9999; width: 50px; height: 50px; border-radius: 50%; background-color: var(--primary-blue); color: white; border: none; box-shadow: 0 4px 10px rgba(0,0,0,0.3); font-size: 1.2rem; cursor: pointer; transition: all 0.3s ease; opacity: 0; pointer-events: none; transform: translateY(20px); }
#scrollTopBtn.show { opacity: 1; pointer-events: all; transform: translateY(0); }

@media (max-width: 768px) { 
    #scrollTopBtn, #accessibility-btn { bottom: 20px; width: 45px; height: 45px; font-size: 1.2rem; } 
    #accessibility-btn { left: 20px; } 
    #scrollTopBtn { right: 20px; } 
}

.skip-link { position: absolute; top: -40px; left: 0; background: var(--primary-blue); color: white; padding: 8px; z-index: 11000; transition: top 0.3s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--primary-blue); outline-offset: 2px; }

/* Redes Sociales */
.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(214, 36, 159, 0.5);
}

.social-link.whatsapp:hover {
    background-color: #25d366;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.btn-instagram-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.btn-instagram-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.3);
}

body.access-high-contrast .social-link.instagram:hover,
body.access-high-contrast .social-link.whatsapp:hover,
body.access-high-contrast .btn-instagram-big {
    background: #000 !important;
    border: 2px solid #FFFF00 !important;
    color: #FFFF00 !important;
    box-shadow: none !important;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   SECCIÓN DE RESEÑAS (TARJETAS VISUALES)
   ========================================= */

/* --- GRID DE TARJETAS (Lectura) --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stars {
    color: #FFD700; /* Dorado */
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: var(--primary-blue);
}

.author-location {
    font-size: 0.85rem;
    color: #999;
}


/* =========================================
   BANNER COOKIES
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 22, 36, 0.95);
    color: white;
    padding: 15px 20px;
    z-index: 20000;
    display: none; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.btn-cookie {
    background-color: #FFD700;
    color: #051624;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s;
}

.btn-cookie:hover {
    transform: scale(1.05);
    background-color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}


/* =========================================
   BOTÓN WHATSAPP FLOTANTE
   ========================================= */
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 90px;
    width: 60px;
    height: 60px;
    background-color: #25d366; 
    color: #FFF;
    border-radius: 50%; 
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}


/* --- AJUSTE ESPACIADO INSTAGRAM (CONTACTO) --- */
.social-cta p {
    margin-bottom: 30px; /* Aumenta este número si quieres más separación */
    display: block;
}