/* =========================================
   HEADER
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
}

/* =========================================
   ESTILOS EXCLUSIVOS DEL HEADER (Prefijo sh-)
   Ninguna de estas clases afectará al resto.
   ========================================= */

/* Contenedor principal del header */
.sh-section {
    background-color: #ffffff;
    height: 80px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
}

/* Contenedor interno para centrar y limitar ancho */
.sh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estilos del Logo */
.sh-logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* Aseguramos que no tenga subrayado ni herencia rara */
    border: none;
    outline: none;
}

/* Estilos de la lista (UL) */
.sh-list {
    display: flex;
    list-style: none; /* Quita los puntos solo a esta lista */
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Estilos de los enlaces (A) */
.sh-link {
    text-decoration: none; /* Quita subrayado solo a estos links */
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.sh-link:hover {
    color: #555;
}

/* Botón Hamburguesa (Invisible en escritorio) */
.sh-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1002;
}

.sh-bar {
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* =========================================
   MEDIA QUERY EXCLUSIVA DEL HEADER
   ========================================= */
@media (max-width: 768px) {
    
    /* Mostrar botón hamburguesa solo en móvil */
    .sh-toggle {
        display: flex;
    }

    /* Transformación a X del botón */
    .sh-toggle.active .sh-bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .sh-toggle.active .sh-bar:nth-child(2) {
        opacity: 0;
    }
    .sh-toggle.active .sh-bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Menú desplegable móvil */
    .sh-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        border-top: 1px solid #eee;
        
        /* Oculto por defecto */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        z-index: 1001;
    }

    /* Cuando se activa */
    .sh-nav.active {
        max-height: 400px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    /* Ajustes verticales para la lista */
    .sh-list {
        flex-direction: column;
        gap: 0;
    }

    .sh-list li {
        width: 100%;
        text-align: center;
    }

    .sh-link {
        display: block;
        padding: 20px;
        border-bottom: 1px solid #f9f9f9;
        font-size: 1.1rem;
    }
}

/* =========================================
   ESTILOS DEL FOOTER (Prefijo sf-)
   ========================================= */

.sf-footer {
    background-color: #F0EEE9; /* Color beige suave extraído de la imagen */
    color: #333333;
    padding: 60px 20px 40px; /* Espaciado arriba, lados, abajo */
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin-top: 50px; /* Separación del contenido principal */
}

/* Contenedor para limitar el ancho del texto */
.sf-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Marca Principal */
.sf-brand {
    font-size: 1.8rem;
    font-weight: 800; /* Extra negrita */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}

/* Slogan */
.sf-slogan {
    font-family: 'Playfair Display', serif; /* Usamos serif para dar el toque elegante */
    font-style: italic;
    font-size: 1.1rem;
    color: #8c7d68; /* Un tono café dorado elegante */
    margin-bottom: 25px;
}

/* Iconos de Redes Sociales */
.sf-socials {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sf-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff; /* Fondo blanco para resaltar */
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sf-social-link:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* Copyright y Subtítulos */
.sf-copyright p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.sf-subtitle {
    margin-top: 5px;
    font-weight: 500;
}

/* Línea Divisoria */
.sf-divider {
    height: 1px;
    background-color: #dcd6ce; /* Gris/Beige oscuro sutil */
    width: 100%;
    margin: 30px 0;
}

/* Dirección */
.sf-address {
    font-style: normal;
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
}

/* Responsive para Footer */
@media (max-width: 768px) {
    .sf-brand {
        font-size: 1.5rem;
    }
    
    .sf-slogan {
        font-size: 1rem;
    }
}

/* =========================================
   ESTILOS EXCLUSIVOS DEL INDEX (Prefijo idx-)
   VERSIÓN MEJORADA: LETRAS GRANDES & RESPONSIVE
   ========================================= */

/* --- CONFIGURACIÓN BASE Y FONDO --- */
.idx-wrapper {
    background: linear-gradient(135deg, #E8E0D5 0%, #F5F1EA 100%); /* Beige degradado */
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    /* Aumento base del tamaño de letra para todo el sitio */
    font-size: 17px; 
    color: #5A5347;
}

/* --- CONTENEDOR CRISTAL (GLASSMORPHISM) --- */
.idx-main-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px); /* Un poco más de blur para elegancia */
    -webkit-backdrop-filter: blur(12px);
    border-radius: 30px; /* Bordes más redondeados */
    box-shadow: 0 30px 60px rgba(10, 10, 10, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 50px; /* Más aire interno */
    position: relative;
    overflow: hidden;
}

/* Decoración superior dorada */
.idx-main-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, #C6A88F, #E5D1A6, #C6A88F);
    z-index: 1;
}

/* --- 1. LOGO Y HEADER --- */
.idx-logo-section {
    text-align: center;
    margin-bottom: 60px;
}

.idx-logo-wrapper {
    width: 220px; /* Ligeramente más grande */
    height: 220px;
    margin: 0 auto 25px;
    background: white;
    padding: 15px;
    border-radius: 50%; /* Lo hice circular para verse más moderno, si prefieres cuadrado cambia a 25px */
    box-shadow: 0 15px 35px rgba(198, 168, 143, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.idx-logo-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.idx-brand-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 3.2rem; /* Título mucho más grande e impactante */
    color: #0A0A0A;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.1;
}

.idx-brand-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #9C826A;
    font-size: 1.4rem; /* Subtítulo más legible */
    font-weight: 500;
}

/* --- 2. SECCIÓN MAYORISTAS --- */
.idx-wholesale-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    border-radius: 25px;
    padding: 50px 40px;
    margin-bottom: 70px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.idx-section-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 2.4rem; /* Título de sección más grande */
    text-align: center;
    margin-bottom: 25px;
    color: #1A1A1A;
    position: relative;
    width: 100%;
}

.idx-section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #C6A88F;
    margin: 15px auto 0;
    border-radius: 2px;
}

.idx-description {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
    color: #5A5347;
    line-height: 1.8; /* Mejor lectura */
    font-size: 1.15rem; /* Texto descriptivo más grande */
}

/* --- GRID DE ICONOS MEJORADO --- */
.idx-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas en PC */
    gap: 30px;
}

.idx-feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 168, 143, 0.15);
    height: 100%; /* Para que todas midan lo mismo */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.idx-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(198, 168, 143, 0.2);
    border-color: #C6A88F;
}

.idx-icon-circle {
    width: 70px; /* Icono más grande */
    height: 70px;
    background: linear-gradient(135deg, #C6A88F, #D8C4B0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 15px rgba(198, 168, 143, 0.3);
}

.idx-feature-card p {
    font-weight: 600;
    font-size: 1.1rem; /* Texto de grid más grande */
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* --- 3. TARJETAS MISIÓN / VISIÓN --- */
.idx-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 70px;
}

.idx-info-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255, 0.5);
    transition: transform 0.3s ease;
}

.idx-info-card:hover {
    transform: translateY(-5px);
    background: #fff;
}

.idx-card-icon {
    font-size: 2.5rem; /* Icono más grande */
    color: #C6A88F;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.idx-info-card h3 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.5rem; /* Título tarjeta más grande */
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #2a2a2a;
}

.idx-info-card p, .idx-values-list {
    color: #555;
    font-size: 1.05rem; /* Texto cuerpo más grande */
    line-height: 1.7;
    text-align: justify;
}

.idx-values-list li {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 168, 143, 0.2);
}

/* --- 4. CULTURA --- */
.idx-culture-section {
    text-align: center;
    padding: 50px;
    background: #fff;
    border-radius: 25px;
    border-left: 8px solid #C6A88F;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.idx-culture-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.idx-culture-content p {
    font-size: 1.15rem; /* Texto cultura más grande */
    color: #555;
    line-height: 1.9;
}

.idx-highlight-box {
    background: #F9F4EF;
    padding: 30px;
    margin: 30px auto;
    max-width: 800px;
    font-style: italic;
    color: #8B4513;
    border-radius: 15px;
    font-weight: 500;
    font-size: 1.25rem; /* Cita destacada más grande */
    border: 1px dashed #D8C4B0;
}

/* =========================================
   MEDIA QUERIES (AJUSTE INTELIGENTE)
   ========================================= */

/* LAPTOPS PEQUEÑAS Y TABLETS (1024px hacia abajo) */
@media (max-width: 1024px) {
    .idx-main-container {
        padding: 30px;
    }
    
    .idx-cards-grid {
        /* En tablets ponemos Misión arriba, Visión y Valores abajo o en columna */
        grid-template-columns: 1fr; 
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .idx-features-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas en tablets */
    }
}

/* CELULARES (Pantallas < 768px) */
@media (max-width: 768px) {
    .idx-wrapper {
        padding: 10px; /* Menos borde externo en el cel */
    }

    .idx-main-container {
        padding: 25px 15px; /* Aprovechar más el ancho */
        border-radius: 20px;
    }

    .idx-logo-wrapper {
        width: 160px; /* Ajuste para que no ocupe toda la pantalla */
        height: 160px;
    }

    .idx-brand-title {
        font-size: 2.2rem; /* Grande, pero cabe en pantalla */
        letter-spacing: 2px;
    }

    .idx-brand-subtitle {
        font-size: 1rem;
    }

    .idx-wholesale-section {
        padding: 30px 15px;
    }
    
    .idx-section-title {
        font-size: 1.8rem;
    }

    /* EL GRID EN CELULAR (2x2 PERFECTO) */
    .idx-features-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }

    .idx-feature-card {
        padding: 20px 10px; /* Padding ajustado */
    }

    .idx-icon-circle {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .idx-feature-card p {
        font-size: 0.95rem; /* En celular el texto debe bajar un poquito para caber */
    }

    .idx-description {
        font-size: 1rem;
        text-align: justify; /* Justificado se ve mejor en bloques de texto móviles */
    }

    .idx-culture-section {
        padding: 25px;
    }
}






/******************************************************************************************************
ESTILOS PARA CONOCENOS
******************************************************************************************************/
/* =========================================
   ESTILOS CONÓCENOS (PREFIJO cnc-)
   DISEÑO PREMIUM - LETRAS GRANDES - RESPONSIVE 2X2
   ========================================= */

/* --- CONFIGURACIÓN BASE --- */
.cnc-wrapper {
    background: linear-gradient(135deg, #E8E0D5 0%, #F5F1EA 100%); /* Beige suave */
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif; /* Fuente limpia */
    min-height: 100vh;
    color: #4a4a4a;
    font-size: 18px; /* AUMENTO DE LETRA BASE */
}

/* --- CONTENEDOR TIPO CRISTAL (GLASSMORPHISM) --- */
.cnc-glass-container {
    max-width: 1300px; /* Más ancho para que quepa todo bien */
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92); /* Casi sólido para mejor lectura */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 80px rgba(139, 69, 19, 0.1); /* Sombra café muy suave */
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* --- HEADER --- */
.cnc-header {
    text-align: center;
    margin-bottom: 70px;
}

.cnc-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 3.5rem; /* Título Gigante */
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.cnc-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #C5A059; /* Dorado */
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.cnc-divider {
    width: 100px;
    height: 5px;
    background: #C5A059;
    margin: 0 auto 30px;
    border-radius: 10px;
}

.cnc-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- GRID DE ICONOS (CORREOS) --- */
.cnc-departments-grid {
    display: grid;
    /* PC: 4 columnas */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    margin-bottom: 80px;
}

.cnc-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.cnc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.2); /* Resplandor dorado al pasar mouse */
    border-color: rgba(197, 160, 89, 0.3);
}

/* Estilo especial para tarjeta destacada (Compras) */
.cnc-card-featured {
    border: 2px solid rgba(197, 160, 89, 0.2);
    background: linear-gradient(to bottom, #fff, #faf8f5);
}

.cnc-icon-circle {
    width: 80px; /* Icono grande */
    height: 80px;
    background: linear-gradient(135deg, #E5D1A6, #C5A059);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.cnc-card h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #222;
}

.cnc-email-link {
    color: #666;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 15px;
    word-wrap: break-word; /* Evita que el correo se salga del cuadro */
    display: block;
    width: 100%;
}

/* Info extra en tarjeta de compras */
.cnc-featured-info {
    background: #fff;
    border: 1px dashed #C5A059;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.cnc-person {
    display: block;
    font-weight: 700;
    color: #C5A059;
    font-size: 1.1rem;
}
.cnc-person-phone {
    display: block;
    font-size: 0.95rem;
    color: #555;
}

/* Botón de enviar correo */
.cnc-btn-action {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #C5A059;
    color: #C5A059;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.cnc-btn-action:hover {
    background: #C5A059;
    color: #fff;
}

/* --- SECCIÓN WHATSAPP --- */
.cnc-whatsapp-container {
    background: linear-gradient(to right, #fdfbf7, #fff);
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 80px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.02);
}

.cnc-wa-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.cnc-wa-subtitle {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 40px;
}

.cnc-wa-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* BOTÓN WHATSAPP GRANDE CON NUMERO */
.cnc-wa-btn {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 20px;
    min-width: 320px; /* Ancho fijo para uniformidad */
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.25);
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.cnc-wa-btn:hover {
    transform: scale(1.03);
    background: #fff;
    color: #25D366;
    border-color: #25D366;
}

.cnc-wa-icon {
    font-size: 3rem;
    margin-right: 20px;
}

.cnc-wa-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.cnc-wa-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 1px;
}

.cnc-wa-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.cnc-wa-number {
    font-family: 'Roboto', sans-serif; /* Fuente tipo número */
    font-size: 1.1rem;
    margin-top: 2px;
    font-weight: 500;
}

/* --- SECCIÓN MAPA --- */
.cnc-map-section {
    text-align: center;
}

.cnc-address-box {
    margin-bottom: 30px;
}

.cnc-pin-icon {
    font-size: 3rem;
    color: #C5A059;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.cnc-address-box h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.cnc-address-box p {
    font-size: 1.3rem;
    color: #555;
}

.cnc-map-frame {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 5px solid #fff; /* Marco blanco tipo foto */
}

.cnc-map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */

@media (max-width: 1200px) {
    .cnc-departments-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas en laptops pequeñas */
    }
}

/* CELULAR (LA MAGIA AQUÍ) */
@media (max-width: 768px) {
    .cnc-wrapper {
        padding: 15px 10px;
    }
    .cnc-glass-container {
        padding: 30px 15px;
        border-radius: 20px;
    }
    
    .cnc-title { font-size: 2.2rem; }
    .cnc-subtitle { font-size: 1.2rem; }

    /* GRID 2x2 EN CELULAR */
    .cnc-departments-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas forzadas */
        gap: 15px; /* Espacio justo */
    }

    .cnc-card {
        padding: 20px 10px; /* Tarjeta compacta */
    }

    .cnc-icon-circle {
        width: 60px; height: 60px; font-size: 1.5rem;
    }

    .cnc-card h3 { font-size: 1rem; }
    
    .cnc-email-link { 
        font-size: 0.8rem; /* Ajuste para que el correo no rompa */
        margin-bottom: 10px;
    }

    .cnc-btn-action {
        padding: 8px 15px;
        font-size: 0.75rem;
        width: 100%;
    }

    /* Ajuste info extra en móvil */
    .cnc-person, .cnc-person-phone { font-size: 0.9rem; }

    /* Botones de Whats en columna */
    .cnc-wa-grid { flex-direction: column; }
    .cnc-wa-btn { min-width: auto; width: 100%; }

    .cnc-map-frame { height: 350px; }
}