/* ================================================== */
/* ===         VARIABLES DE DISEÑO GLOBAL         === */
/* ================================================== */
:root {
    --hgw-green: #0a674d; 
    --hgw-secondary-green: #0c8060;
    --hgw-gold: #d4af37; 
    --dark-blue-bg: #0b1a33;
    --text-color-light: #f8f9fa;
    --text-color-medium: #adb5bd;
    --text-color-dark: #212529;
    --card-bg-dark: rgba(11, 26, 51, 0.5);
    --bg-color-light: #ffffff;
    --bg-color-gray: #f8f9fa;
    --border-color-dark: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.07);
    --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ================================================== */
/* ===             ESTILOS GLOBALES               === */
/* ================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    background-color: var(--dark-blue-bg);
    background-image: linear-gradient(180deg, var(--dark-blue-bg) 0%, #0a4d3a 100%);
    background-attachment: fixed;
    color: var(--text-color-medium);
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--text-color-light); }
.header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(11, 26, 51, 0.8); backdrop-filter: blur(10px); z-index: 1000; padding: 0.5rem 0; border-bottom: 1px solid var(--border-color-dark); }
.header .container { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo a { display: flex; flex-direction: column; align-items: center; text-decoration: none; }
.logo img { height: 45px; width: auto; margin-bottom: 2px; }
.logo-text { color: var(--text-color-light); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; }
.main-nav a { color: var(--text-color-light); font-weight: 600; padding: 0.5rem 0; border-bottom: 2px solid transparent; font-size: 1rem; }
.main-nav a:hover { color: var(--hgw-gold); }
.main-nav a.active { color: var(--hgw-gold); border-bottom-color: var(--hgw-gold); }


/* ================================================== */
/* ===          HEADER Y NAVEGACIÓN               === */
/* ================================================== */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(11, 26, 51, 0.8);
    backdrop-filter: blur(10px); z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color-dark);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.logo img {
    height: 45px;
    width: auto;
    margin-bottom: 2px;
}
.logo-text {
    color: var(--text-color-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-nav ul { list-style: none; display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; }
.main-nav a { color: var(--text-color-light); font-weight: 600; padding: 0.5rem 0; border-bottom: 2px solid transparent; font-size: 1rem; }
.main-nav a:hover { color: var(--hgw-gold); }
.main-nav a.active { color: var(--hgw-gold); border-bottom-color: var(--hgw-gold); }
.dropdown { position: relative; padding: 1.5rem 0; margin: -1.5rem 0; }
.dropdown-content {
    display: none; position: absolute; top: 100%; left: 0; margin-top: 0;
    background-color: var(--dark-blue-bg); min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); z-index: 100;
    list-style: none; padding: 0.5rem 0; border-radius: var(--border-radius);
    border: 1px solid var(--border-color-dark);
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { padding: 12px 16px; display: block; text-align: left; border-bottom: none; }
.dropdown-content a:hover { background-color: rgba(255, 255, 255, 0.05); }

/* Botones */
.cta-button, .btn-secondary, .submit-btn, .cta-scroll {
    display: inline-block; padding: 0.9rem 2.2rem; border-radius: 50px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    border: 2px solid; transition: var(--transition); cursor: pointer; text-align: center;
}
.cta-button, .cta-scroll, .submit-btn { background-color: var(--hgw-green); color: white; border-color: var(--hgw-green); }
.cta-button:hover, .cta-scroll:hover, .submit-btn:hover { background-color: var(--hgw-gold); border-color: var(--hgw-gold); transform: translateY(-3px); color: var(--text-color-dark); }
.btn-secondary { background-color: transparent; color: var(--hgw-gold); border-color: var(--hgw-gold); }
.btn-secondary:hover { background-color: var(--hgw-gold); color: var(--text-color-dark); }

/* ================================================== */
/* ===              SECCIÓN HERO                  === */
/* ================================================== */
.hero { padding: 10rem 0 5rem 0; background-color: transparent; text-align: center; }
.hero-content { max-width: 800px; margin: 0 auto 3rem auto; }
.hero-content h1 { font-size: 4.5rem; color: var(--text-color-light); text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.4rem; color: var(--text-color-medium); }

/* Contenedor de Video (General, aplicable al Hero y otros) */
.video-container {
    max-width: 960px;
    margin: 40px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--hgw-gold);
}
.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================== */
/* ===       SECCIONES DE CONTENIDO GENERAL       === */
/* ================================================== */
.section-title { margin-bottom: 3rem; text-align: center; }
.section-title h2 { font-size: 2.8rem; margin-bottom: 0.5rem; }
.section-title p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; }
.problem, #products, .getting-started, .social-proof { padding: 6rem 0; background-color: transparent; }

/* Tarjetas (Problema, Productos, Pasos) */
.problem-grid, .product-display-grid, .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.problem-card, .product-card-promo, .step {
    background: rgba(11, 26, 51, 0.5);
    border: 1px solid var(--border-color-dark);
    padding: 2.5rem; border-radius: var(--border-radius); text-align: center;
    transition: var(--transition);
}
.problem-card:hover, .product-card-promo:hover, .step:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.1); }
.problem-card .icon svg, .step-number { color: var(--hgw-gold); width: 50px; height: 50px; margin-bottom: 1rem; }
.problem-card h3, .product-card-promo h3, .step h3 { color: var(--text-color-light); font-size: 1.4rem; }
.product-card-promo { padding: 1.5rem; display: flex; flex-direction: column; }
.product-card-promo img { border-radius: var(--border-radius); margin-bottom: 1.5rem; aspect-ratio: 1 / 1; object-fit: cover; }
.product-card-promo p { flex-grow: 1; margin-bottom: 1.5rem; }

/* --- ESTILOS PARA LA SECCIÓN DE OPORTUNIDAD --- */
#opportunity { padding: 6rem 0; background-color: rgba(0,0,0,0.15); }
.opportunity-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 2rem; background: rgba(11, 26, 51, 0.5);
    border: 1px solid var(--border-color-dark); border-radius: var(--border-radius);
    overflow: hidden; padding: 3rem;
}
.opportunity-image { max-width: 500px; width: 100%; }
.opportunity-image img { width: 100%; height: auto; display: block; border-radius: var(--border-radius); }
.opportunity-content { max-width: 600px; }
.opportunity-content h2 { text-align: center; }
.opportunity-content p { margin-bottom: 2rem; }

/* FORMULARIO DE REGISTRO */
.register { padding: 6rem 0; }
.registration-form {
    max-width: 500px; margin: 2rem auto 0;
    background: rgba(11, 26, 51, 0.5); border: 1px solid var(--border-color-dark);
    padding: 2.5rem; border-radius: var(--border-radius);
}
.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group select {
    width: 100%; padding: 1rem; border-radius: 8px; font-size: 1rem; font-family: inherit;
    background-color: rgba(0,0,0,0.2); border: 1px solid var(--border-color-dark); color: white;
}
.form-group input::placeholder { color: var(--text-color-medium); }
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--hgw-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* ================================================== */
/* ===             FOOTER                         === */
/* ================================================== */
.footer {
    background: var(--dark-blue-bg); color: var(--text-color-light);
    padding: 4rem 0 2rem; border-top: 1px solid var(--border-color-dark); margin-top: 6rem;
}
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-section h4 { color: white; margin-bottom: 1rem; font-size: 1.2rem; }
.footer-section p, .footer-section a { color: var(--text-color-medium); }
.footer-section a:hover { color: white; }
.footer-section ul { list-style: none; padding: 0; }
.footer-section li { margin-bottom: 0.5rem; }

.footer-logo-section a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    text-decoration: none;
}
.footer-logo {
    height: 40px;
}
.footer-logo-text {
    color: var(--text-color-light);
    font-size: 1.3rem;
    font-weight: 700;
}
.footer-logo-section p {
    padding-left: 5px;
}
.footer-bottom { border-top: 1px solid #495057; padding-top: 2rem; text-align: center; font-size: 0.9rem; color: var(--text-color-medium); }

/* ================================================== */
/* ===          DISEÑO RESPONSIVE                 === */
/* ================================================== */
@media (max-width: 992px) {
    .opportunity-card { flex-direction: column; }
}
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2, .section-title h2 { font-size: 2.2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero { padding: 8rem 0 4rem 0; }
    .footer-content, .problem-grid, .product-display-grid, .steps { grid-template-columns: 1fr; }
    .main-nav { display: none; }
    .opportunity-content { padding: 1rem; }
}

/* ================================================== */
/* ===       ESTILOS PARA BOTÓN ÚNETE             === */
/* ================================================== */
@keyframes pulse-effect {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 15px 25px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.join-button {
    padding: 1.35rem 4.95rem;
    font-size: 1.1rem;
    background-color: var(--hgw-gold);
    border-color: var(--hgw-gold);
    color: var(--text-color-dark) !important;
    animation: pulse-effect 2.5s infinite;
}
.join-button:hover {
    background-color: var(--hgw-secondary-green);
    border-color: var(--hgw-secondary-green);
    color: white !important;
    animation: none;
}
/* 1. Nuevo fondo para la sección */
.hero-video-section {
    background-color: #081424; /* Un azul un poco más oscuro que el fondo principal */
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.1) 1px, transparent 0),
        radial-gradient(circle at 10px 10px, rgba(212, 175, 55, 0.1) 1px, transparent 0);
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
}

/* 2. Contenedor para el video */
.video-container {
    max-width: 960px; /* Ancho máximo del video */
    margin: 40px auto 0; /* Espacio arriba y centrado horizontalmente */
    border-radius: 15px;
    overflow: hidden; /* Asegura que el video respete el borde redondeado */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--hgw-gold);
}

/* 3. Estilos para la etiqueta de video */
.video-container video {
    width: 100%; /* Hace el video responsivo */
    height: auto;
    display: block; /* Elimina espacio extra debajo del video */
}
/* ================================================== */
/* ===  ESTILOS PARA FILTRO Y BÚSQUEDA (Refinado) === */
/* ================================================== */

/* Contenedor principal de los filtros */
.filtros-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Para que se adapte en móviles */
    gap: 2.5rem; /* Aumentamos el espacio entre elementos */
    margin: 0 auto 3rem auto;
    padding: 1.5rem 2rem;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.2); /* Fondo sutil para enmarcar */
    border: 1px solid var(--border-color-dark);
    border-radius: var(--border-radius);
}

/* Estilo para cada grupo (etiqueta + input) */
.filtro-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* Espacio entre etiqueta e input */
}

/* Estilo para las etiquetas "Filtrar por..." */
.filtro-item label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color-medium);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Estilo unificado para el select y el input de búsqueda */
.filtro-select,
.search-input {
    background-color: var(--dark-blue-bg); /* Fondo más oscuro y sólido */
    border: 1px solid var(--hgw-secondary-green); /* Borde más sutil */
    color: var(--text-color-light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    min-width: 280px; /* Ancho mínimo para que no se vea pequeño */
}

/* Efecto al pasar el mouse y al seleccionar */
.filtro-select:hover,
.search-input:hover {
    border-color: var(--hgw-gold);
}
.filtro-select:focus,
.search-input:focus {
    outline: none;
    border-color: var(--hgw-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3); /* Resplandor dorado al seleccionar */
}

/* Estilo del texto de placeholder */
.search-input::placeholder {
    color: var(--text-color-medium);
    opacity: 0.6;
}

/* Estilo del menú desplegable */
.filtro-select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2em;
    padding-right: 3.5rem;
}
.filtro-select option {
    background-color: var(--dark-blue-bg);
    color: var(--text-color-light);
}

/* Estilos de paginación (sin cambios, solo para mantener la sección completa) */
.paginacion-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}
.pag-btn {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color-dark);
    color: var(--text-color-medium);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.pag-btn.active,
.pag-btn:hover {
    background-color: var(--hgw-green);
    border-color: var(--hgw-green);
    color: var(--text-color-light);
}
/* ================================================== */
/* ===    ESTILOS PARA FILTRO Y PAGINACIÓN (ACTUALIZADOS) === */
/* ================================================== */
.filtros-container { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-bottom: 3rem; color: var(--text-color-light); font-weight: 600; }
.filtro-select { background-color: var(--card-bg-dark); border: 2px solid var(--hgw-secondary-green); color: var(--text-color-light); padding: 0.8rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.2em; padding-right: 3rem; }
.filtro-select:hover { border-color: var(--hgw-gold); }

/* ===== ESTA ES LA MODIFICACIÓN DE COLORES ===== */
.filtro-select option {
    background-color: var(--dark-blue-bg);
    color: var(--text-color-light);
}

.paginacion-container { display: flex; justify-content: center; gap: 0.5rem; margin-top: 4rem; }
.pag-btn { background-color: var(--card-bg-dark); border: 1px solid var(--border-color-dark); color: var(--text-color-medium); width: 40px; height: 40px; border-radius: 50%; font-weight: 600; cursor: pointer; transition: var(--transition); }
.pag-btn.active, .pag-btn:hover { background-color: var(--hgw-green); border-color: var(--hgw-green); color: var(--text-color-light); }
/* ================================================== */
/* ===       ESTILOS PARA CARRUSEL DE PRODUCTOS   === */
/* ================================================== */
.product-carousel {
    width: 100%;
    padding-bottom: 4rem; /* Espacio para la paginación */
}

.product-carousel .swiper-slide {
    height: auto; /* Permite que las tarjetas definan la altura */
}

.product-carousel .product-card-promo {
    height: 100%; /* Asegura que todas las tarjetas en la vista tengan la misma altura */
    display: flex;
    flex-direction: column;
}

.product-carousel .product-card-promo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-carousel .product-card-promo p {
    flex-grow: 1; /* Empuja los botones hacia abajo */
}

.product-carousel .product-card-buttons {
    margin-top: auto; /* Alinea los botones en la parte inferior */
}

/* Estilos para la paginación de Swiper */
.swiper-pagination-bullet {
    background-color: var(--hgw-secondary-green);
    width: 12px;
    height: 12px;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--hgw-gold);
    opacity: 1;
}

/* Contenedor para el botón "Ver Catálogo" */
.view-all-products-container {
    text-align: center;
    margin-top: 2rem;
}/* ================================================== */
/* ===   ESTILOS PARA TÍTULOS DE TRANSICIÓN ANIMADOS === */
/* ================================================== */

/* Contenedor de la sección del título */
.transition-title-section {
    padding: 6rem 0 4rem 0; /* Espacio para que el título respire */
    text-align: center;
    overflow: hidden; /* Clave para el efecto de revelado */
}

/* Estilo del título con color degradado */
.transition-title-section h2.reveal-headline {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    
    /* Efecto de color degradado */
    background: linear-gradient(45deg, var(--hgw-gold), #ffffff, var(--hgw-secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Este es un contenedor que creará el JavaScript para animar cada palabra */
.reveal-headline .word-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.reveal-headline .word {
    display: inline-block;
    transform: translateY(100%); /* Posición inicial: abajo y fuera de la vista */
    opacity: 0;
}

/* Responsive para los títulos */
@media (max-width: 768px) {
    .transition-title-section {
        padding: 4rem 0 2rem 0;
    }
    .transition-title-section h2.reveal-headline {
        font-size: 2.5rem;
    }
}
/* ================================================== */
/* ===       ESTILOS PARA FLECHAS DEL CARRUSEL    === */
/* ================================================== */
.product-carousel .swiper-button-next,
.product-carousel .swiper-button-prev {
    color: var(--hgw-gold); /* Color dorado para las flechas */
    background-color: rgba(11, 26, 51, 0.5); /* Fondo semitransparente */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color-dark);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.product-carousel .swiper-button-next:hover,
.product-carousel .swiper-button-prev:hover {
    background-color: var(--hgw-gold);
    color: var(--text-color-dark);
}

.product-carousel .swiper-button-next::after,
.product-carousel .swiper-button-prev::after {
    font-size: 1.2rem; /* Tamaño del icono de la flecha */
    font-weight: 800;
}
/* ================================================== */
/* ===     ESTILOS PARA TARJETA DE CONTACTO HEADER === */
/* ================================================== */

/* Contenedor principal de la tarjeta de contacto */
.header-contact-card {
    position: absolute; /* La clave para centrarlo */
    left: 50%; /* Lo movemos a la mitad horizontal */
    top: 50%; /* Lo movemos a la mitad vertical */
    transform: translate(-50%, -50%); /* Lo centramos perfectamente */

    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color-dark);
    border-radius: 50px;
    padding: 6px;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-glow 3s infinite ease-in-out;
}

/* Efecto al pasar el mouse */
.header-contact-card:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    animation-play-state: paused;
}

/* Estilo para la imagen de contacto */
.contact-image {
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Esto crea el círculo */
    object-fit: cover; /* Asegura que la imagen cubra el círculo sin deformarse */
    border: 2px solid var(--hgw-gold); /* Borde dorado para resaltar */
}

/* Contenedor para el texto */
.contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alineamos el texto a la izquierda */
    padding-right: 15px; /* Espacio a la derecha antes de que termine el recuadro */
}

/* Estilo para el nombre "Manuel Sandoval" */
.contact-text .name {
    color: var(--text-color-light);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Estilo para el título "Representante HGW Ecuador" */
.contact-text .title {
    color: var(--text-color-medium);
    font-size: 0.75rem;
    font-weight: 400;
}

/* Definición de la animación de "movimiento" */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
    }
}
/* Estilos para detalles de contacto en el footer */
.footer-contact-details {
    font-size: 0.9rem; /* Tamaño de letra legible */
    line-height: 1.6; /* Espacio entre líneas */
    color: var(--text-color-medium);
}

.footer-contact-details strong {
    color: var(--text-color-light); /* Resaltamos los títulos como RUC, Dirección, etc. */
}
/* Estilos para enlaces en los detalles de contacto del footer */
.footer-contact-details a {
    color: inherit; /* Hereda el color del texto normal */
    text-decoration: none; /* Sin subrayado */
    transition: color 0.3s ease;
}

.footer-contact-details a:hover {
    color: var(--hgw-gold); /* Cambia a color dorado al pasar el mouse */
}