/* ==================== SECCIÓN PRINCIPAL ==================== */
#follow {
    margin: 10px 10px 10px 10px;
    padding: 10px;
    background-color: #eaeaea;
    border-radius: 8px;
    text-align: center;
}

#follow h2 {
    font-family: 'MonReg', sans-serif;
    font-size: 45px;
    opacity: 0.7;
    margin-bottom: 15px;
}

/* ==================== REDES SOCIALES ==================== */
.RedSoc {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cards de redes sociales */
.social-card {
    background-color: #fff;
    border-radius: 10px;
    width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Configuración específica para TikTok */
.social-card.tiktok blockquote.tiktok-embed {
    width: 100%;
    max-width: 100%;
    min-height: 400px;
}

/* Configuración para iframes antiguos (retrocompatibilidad) */
.social-item iframe {
    border-radius: 10px;
    width: 100%;
    min-width: 300px;
    height: 400px;
    border: none;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    text-align: center;
}

/* ==================== CARRUSEL ==================== */
.carousel-container-x92a {
    position: relative;
    width: 100%;
    max-width: 458px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

.carousel-wrapper-x92a {
    width: 100%;
    overflow: hidden;
}

.carousel-track-x92a {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item-x92a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-track-x92a img {
    height: auto;
    width: 100px;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.carousel-track-x92a img:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

/* Botones del carrusel */
.carousel-btn-x92a {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    top: 50%;
    margin-top: 40px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.carousel-btn-x92a:hover {
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
}

.carousel-btn-x92a:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-x92a { 
    left: 0; 
}

.next-x92a { 
    right: 0; 
}

/* ==================== SITIOS DE INTERÉS ==================== */
.sitiosinteres img {
    min-width: 130px;
    max-width: 150px;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.sitiosinteres img:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

/* ==================== MEDIA QUERIES ==================== */

/* Pantallas grandes (1440px+) */
@media (min-width: 1440px) {
    .social-item iframe {
        width: 420px; 
    }
}

/* Tablets y pantallas medianas (768px - 1199px) */
@media (max-width: 1200px) {
    .social-card {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .social-card {
        width: 250px;
    }
    
    .RedSoc {
        gap: 0.8rem;
    }
}

/* Móviles (hasta 480px) */
@media (max-width: 480px) {
    #follow {
        margin: 5px;
        padding: 8px;
    }
    
    #follow h2 {
        font-size: 30px;
    }
    
    .social-card {
        width: 200px;
        padding: 5px;
    }
    
    .carousel-container-x92a {
        max-width: 229px;
    }
    
    .carousel-track-x92a img {
        width: 100px;
        min-width: 100px;
    }
    
    .carousel-btn-x92a {
        padding: 3px;
        font-size: 16px;
    }
    
    .RedSoc {
        gap: 0.5rem;
    }
}