/* =========================================
   ESTILOS GENERALES
   ========================================= */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

.logo-img {
    max-width: 200px;
    height: auto;
}

/* =========================================
   CARRUSEL (Ajuste Responsivo)
   ========================================= */
.carousel {
    max-width: 1700px;
}

.carousel-inner {
    border-radius: 10px;
    background-color: #0d0d0d;
}


/* =========================================
   BOTÓN CATÁLOGO
   ========================================= */
.custom-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.custom-btn-dark {
    background-color: #111111 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
}

.custom-btn-dark:hover {
    background-color: #2a2a2a !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* =========================================
   TARJETAS PERSONALIZADAS (CARDS)
   ========================================= */
.custom-card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

/* Contenedor de la viñeta/icono */
.icon-wrapper {
    display: inline-block;
}

.icon-img {
    width: 35px;
    /* Ajusta según el tamaño de tu imagen Viñeta_black.png */
    height: auto;
}

/* Títulos con Playfair Display */
.custom-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Textos legibles y justificados */
.custom-text {
    font-family: 'Inter', sans-serif;
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

/* =========================================
   CLIENTES (Cuadrícula Estática)
   ========================================= */

.static-logo {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Efecto premium: Logos grises y sutiles por defecto */
.static-logo img {
    max-height: 80px;
    /* Limita la altura para que no se vean gigantes */
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.static-logo-1 {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Efecto premium: Logos grises y sutiles por defecto */
.static-logo-1 img {
    max-height: 170px;
    /* Limita la altura para que no se vean gigantes */
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}


/* Recuperar color y tamaño al pasar el ratón */
.static-logo img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

/* Recuperar color y tamaño al pasar el ratón */
.static-logo-1 img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .static-logo img {
        max-height: 60px;
        /* Un poco más pequeños en celular */
    }
}

/* =========================================
   FOOTER (Pie de Página)
   ========================================= */
.custom-footer {
    background-color: #1a1a1c;
    /* Fondo gris muy oscuro, casi negro */
    color: #f5f5f5;
    border-top: 1px solid #2a2a2c;
}

/* Tamaño del logo en el footer */
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
}

/* Etiquetas grises pequeñas (CONTACTO, TELÉFONO) */
.footer-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888888;
    margin-right: 10px;
}

/* Enlaces de correo y teléfono */
.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Enlaces de políticas */
.footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

/* Hover de todos los enlaces (se iluminan a blanco) */
.footer-link:hover,
.footer-legal a:hover {
    color: #ffffff;
}

/* Línea separadora vertical (|) */
.footer-legal .separator {
    color: #444444;
}

/* Texto de derechos de autor */
.footer-copy {
    font-size: 0.8rem;
    color: #666666;
}