body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
    padding: 10px;
    box-sizing: border-box;
}

header {
    padding: 0px 0;
    margin-bottom: 40px; /* Aumentado margen inferior para móvil */
}

.main-logo {
    height: 40px; /* Ajusta según el tamaño deseado del logo */
    width: auto; /* Mantiene la proporción */
    display: block;
    margin: 0 auto 10px 0; /* Alineado a la izquierda y con margen inferior para móvil */
}

main {
    display: flex;
    justify-content: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column; /* Stack en móvil por defecto */
    align-items: center;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

/* Hace que los hijos de .left-column actúen como hijos de .content-wrapper en el flujo flex */
.left-column {
    display: contents;
    margin-top: 100px;
}

/* Estilos para los H1 */
.hero-headlines {
    order: 1; /* H1s primero en móvil */
    width: 100%;
    margin-bottom: 40px; /* Aumentado margen inferior para móvil */
}

/* Estilos para P y Button */
.text-content {
    order: 3; /* P y Button al final en móvil */
    width: 100%;
    max-width: 500px;
    margin-top: 0; /* Eliminado margen superior, espacio controlado por carrusel */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ajustes al H1 dentro de .hero-headlines */
.hero-headlines h1 {
    font-size: 2.5rem; /* Tamaño para móvil */
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    animation: reveal 2.5s ease-out forwards; /* animación reveal */
    clip-path: inset(0 100% 0 0);
    display: inline-block;
    width: 100%;
}

/* Delays para la animación H1 */
.hero-headlines h1:nth-child(2) {
  animation-delay: 1.8s;
}

.hero-headlines h1:nth-child(3) {
  animation-delay: 3.6s;
}

/* Párrafo y Botón */
p {
    font-size: 1rem; /* Tamaño para móvil */
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 0; /* Quitamos margen superior anterior */
}

button {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #444;
}

/* Contenedor para el carrusel en móvil */
.logo-carousel-container {
    order: 2; /* Carrusel en medio en móvil */
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    margin-bottom: 40px; /* Añadido margen inferior para móvil */
}

.logo-grid {
    display: flex; /* Mantenemos flex para scroll horizontal en móvil */
    gap: 15px;
    padding: 10px 0;
    /* overflow-x: auto; <-- Eliminado para usar animación */
    width: max-content; /* Ajusta el ancho al contenido */
    justify-content: flex-start;
    /* Animación de scroll infinito */
    animation: scroll 30s linear infinite;
}

/* Definición de la animación */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Mueve el contenedor la distancia de las 6 imágenes originales + sus gaps */
    /* (100px width + 15px gap) * 6 = 690px */
    transform: translateX(calc(-6 * (100px + 15px)));
  }
}

/* Ocultamos las columnas en móvil, mostramos items directamente */
.image-column {
    display: contents; /* Hace que el div columna no afecte el layout flex del padre */
}

.logo-item {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: transform 0.3s ease; /* Add smooth transition */
    position: relative; /* Add relative positioning */
}

/* Definición de la animación de revelado */
@keyframes reveal {
  from {
    /* Empieza completamente cortado desde la derecha */
    clip-path: inset(0 100% 0 0);
  }
  to {
    /* Termina completamente visible */
    clip-path: inset(0 0 0 0);
  }
}

/* Mantenemos los delays para la secuencia */
.text-content h1:nth-child(2) {
  animation-delay: 1.8s; /* Ajustamos delay */
}

.text-content h1:nth-child(3) {
  animation-delay: 3.6s; /* Ajustamos delay */
}

/* --- Estilos para Escritorio --- */
@media (min-width: 769px) {
    body {
        padding: 40px 60px;
    }

    header {
        margin-bottom: 0; /* Restablecemos margen para escritorio */
    }

    .content-wrapper {
        display: flex; /* Aseguramos flex */
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    /* Estilos para la columna izquierda en escritorio */
    .left-column {
        display: block; /* Anulamos display: contents */
        flex-basis: 45%;
        max-width: 550px;
        order: 1; /* Columna izquierda primero */
    }

    /* Restablecer orden dentro de la columna izquierda */
    .hero-headlines {
        order: 0;
        width: auto;
        margin-bottom: 15px; /* Restablecido margen escritorio */
    }

    /* Aumentar H1 en escritorio */
    .hero-headlines h1 {
        font-size: 3.5rem;
    }

    .text-content {
        order: 0;
        width: auto;
        max-width: none;
        margin-top: 0; /* Restablecido margen escritorio */
        align-items: flex-start;
    }

    .main-logo {
        margin: 0; /* Alineado a la izquierda en escritorio */
        margin-bottom: 50px; /* Mantenemos margen inferior en escritorio */
        height: 70px; /* Un poco más grande en escritorio */
    }

    .logo-grid {
        flex-basis: 50%;
        display: flex;
        justify-content: center;
        align-items: flex-start; /* Alineamos columnas arriba */
        gap: 20px; /* Reducimos gap entre columnas */
        width: auto; /* Ancho automático en escritorio */
        height: auto;
        max-width: 600px;
        overflow: visible; /* Quitamos overflow hidden */
        padding: 20px 0;
        animation: none; /* Detenemos la animación en escritorio */
    }

    .image-column {
        display: flex; /* Restauramos display flex para las columnas */
        flex-direction: column;
        gap: 20px; /* Reducimos gap entre imágenes */
        align-items: center;
        width: auto;
    }

    /* Ocultamos las columnas duplicadas (las que tienen aria-hidden) en escritorio */
    .image-column[aria-hidden="true"] {
        display: none;
    }

    /* Estilos base logo-item escritorio */
    .logo-item {
        width: auto;
        height: auto;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        object-fit: cover;
        position: static;
        border-radius: 15px;
    }

    /* --- Tamaños y Desplazamientos Específicos --- */

    /* Columna 1 */
    .image-column-1 {
        padding-top: 180px; /* Ajusta padding para centrar verticalmente */
        transform: translateY(50px);
    }
    .logo-item-4 { /* frangibar */
        width: 160px;
        height: 160px;
    }
    /* .logo-item-1 quitado de aquí */

    /* Columna 2 */
    .image-column-2 {
         transform: translateY(140px); /* Desplazamos columna central abajo */
    }
    .logo-item-2 { /* pascal */
        width: 160px; /* Ligeramente más grande */
        height: 160px;
    }
    .logo-item-5 { /* joako */
        width: 160px; /* Más grande */
        height: 160px;
    }

    /* Columna 3 */
    /* No necesita transform general la columna */
    .logo-item-1 { /* zaplana - Ahora en columna 3, arriba */
        width: 190px;
        height: 190px;
        order: -1; /* La ponemos primera visualmente */
    }
    .logo-item-3 { /* lucilavit */
        width: 190px; /* La más grande */
        height: 190px;
        /* order: 0; (por defecto) */
    }
    .logo-item-6 { /* pepi */
        width: 190px; /* Mediana */
        height: 190px;
        /* order: 1; (por defecto) */
    }

    @keyframes wiggle-attention {
      0% { transform: translate(0, 0) rotate(0deg); }
      20% { transform: translate(0, -6px) rotate(-2deg); } /* Lift & slight rotate */
      40% { transform: translate(4px, -6px) rotate(0deg); } /* Wobble right */
      60% { transform: translate(-4px, -6px) rotate(0deg); } /* Wobble left */
      80% { transform: translate(0, -6px) rotate(2deg); }  /* Center lift & slight rotate */
      100% { transform: translate(0, 0) rotate(0deg); } /* Return */
    }

    .logo-item.animate-attention {
      /* Apply the animation ONLY on desktop */
      animation: wiggle-attention 1.2s ease-in-out; /* Duration 1.2s, runs once */
      z-index: 1; /* Bring the animated item slightly forward */
    }

    /* Estilos para el carrusel en escritorio */
    .logo-carousel-container {
        order: 2; /* Carrusel a la derecha */
        flex-basis: 50%;
        margin-bottom: 0; /* Restablecido margen escritorio */
        /* ... resto de estilos de carrusel escritorio ... */
    }

}

/* Ajustes adicionales para pantallas muy grandes si es necesario */
@media (min-width: 1400px) {
    h1 {
        font-size: 4rem;
    }
    /* Puedes añadir más ajustes aquí */
}

/* --- Estilos Sección Testimonios --- */
.testimonials-section {
    background-color: #f9f9f9; /* Un fondo ligeramente diferente */
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px; /* Espacio respecto al contenido anterior */
    overflow: hidden; /* Para contener animaciones */
}

.testimonials-section h2 {
    font-size: 2rem; /* Tamaño móvil */
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stack en móvil */
    align-items: center;
    gap: 40px;
}

.testimonial-images {
    position: relative;
    width: 280px; /* Ancho fijo para imagen */
    height: 280px; /* Alto fijo para imagen */
    margin-bottom: 20px; /* Espacio extra en móvil */
}

.testimonial-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px; /* Equivalente a rounded-3xl */
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(0.9) rotateY(10deg);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
    z-index: 1;
}

.testimonial-image-item.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg) translateY(0);
    z-index: 10; /* Traer al frente */
    /* Simulación de "bounce" al activar */
    animation: image-bounce 0.4s ease-in-out forwards;
}

.testimonial-image-item.prev {
    /* Estado intermedio para las no activas */
    opacity: 0.7;
    transform: scale(0.95) rotateY(-5deg) translateZ(-50px);
    z-index: 5;
}

.testimonial-image-item.next {
     /* Estado intermedio para las no activas */
    opacity: 0.7;
    transform: scale(0.95) rotateY(5deg) translateZ(-50px);
    z-index: 5;
}

@keyframes image-bounce {
  0% { transform: scale(0.95) rotateY(0deg) translateY(0); }
  50% { transform: scale(1.02) rotateY(0deg) translateY(-10px); }
  100% { transform: scale(1) rotateY(0deg) translateY(0); }
}


.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%; /* Añadido para asegurar ancho completo en móvil */
}

.testimonial-text {
    margin-bottom: 30px;
    min-height: 190px; /* Restaurar altura mínima para estabilidad en móvil */
    position: relative;
    width: 100%;
}

.testimonial-text > div { /* Contenedor interno para animación */
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(20px);
    /* Ajustar transición: opacidad muy rápida, transform suave */
    transition: opacity 0.1s ease-in-out, transform 0.3s ease-in-out;
}

.testimonial-text > div.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-text .name {
    font-size: 1.5rem; /* 2xl */
    font-weight: 700;
    color: #111; /* foreground */
    margin: 0 0 5px 0;
}

.testimonial-text .designation {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

/* Estilos para la info de Instagram */
.instagram-info {
    margin-top: 5px; /* Espacio sobre el handle */
    margin-bottom: 5px; /* Espacio debajo del handle */
}

.instagram-info a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #555; /* O el color que prefieras */
    transition: color 0.3s ease;
}

.instagram-info a:hover {
    color: #000;
}

.instagram-logo {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: middle; /* Alinea el logo con el texto */
}

.instagram-handle {
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-text .quote {
    font-size: 1.1rem;
    color: #555; /* muted-foreground */
    line-height: 1.6;
    margin: 0;
}

.testimonial-text .quote span {
    display: inline-block; /* Para animar palabra por palabra */
    opacity: 0;
    transform: translateY(5px);
    filter: blur(5px);
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}

/* --- Estilos Escritorio para Testimonios --- */
@media (min-width: 769px) {
    .testimonials-section h2 {
        font-size: 2.5rem; /* Más grande en escritorio */
        margin-bottom: 60px;
    }

    .testimonials-container {
        flex-direction: row; /* Lado a lado en escritorio */
        justify-content: center;
        align-items: center; /* Centrar verticalmente */
        gap: 80px; /* Más espacio */
    }

    .testimonial-images {
        width: 350px; /* Más grande */
        height: 350px;
        margin-bottom: 0;
        order: 1; /* Imagen a la izquierda */
    }

    .testimonial-content {
        flex-basis: 50%;
        max-width: 450px;
        align-items: flex-start;
        text-align: left;
        order: 2; /* Texto a la derecha */
        padding-top: 0;
    }

    .testimonial-text {
        align-items: flex-start;
        min-height: 220px; /* Restaurar altura mínima para estabilidad en escritorio */
    }
}

/* --- Estilos Sección Feature Steps --- */
.feature-steps-section {
    padding: 60px 20px;
    background-color: #ffffff; /* Fondo blanco o el que prefieras */
    margin-top: 80px;
}

.feature-steps-section .section-title {
    font-size: 2rem; /* Equivalente a text-3xl */
    font-weight: 700; /* bold */
    text-align: center;
    margin-bottom: 50px; /* mb-10 approx */
    color: #111;
}

.feature-steps-container {
    max-width: 1100px; /* Equivalente a max-w-7xl */
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stack en móvil */
    gap: 40px; /* gap-10 approx */
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* space-y-8 approx */
    order: 2; /* Lista abajo en móvil */
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px; /* gap-6 approx */
    opacity: 0.5; /* Opacidad por defecto */
    transition: opacity 0.5s ease-in-out;
    position: relative; /* Necesario para la línea conectora */
}

/* Línea conectora vertical */
.step-item::before {
    content: '';
    position: absolute;
    width: 2px; /* Grosor de la línea */
    background-color: #e0e0e0; /* Color de la línea (gris claro) */
    /* Posicionamiento: Centrado horizontalmente con el indicador */
    /* (Ancho Indicador / 2) - (Ancho Línea / 2) */
    /* Desktop: (40px / 2) - (2px / 2) = 19px */
    /* Mobile: (35px / 2) - (2px / 2) = 16.5px -> usamos calc para ajustar */
    left: calc(var(--indicator-size, 35px) / 2 - 1px); 
    top: var(--indicator-size, 35px); /* Empieza justo debajo del indicador */
    height: calc(100% - var(--indicator-size, 35px) + 60px); /* Altura hasta el siguiente item + gap (aprox 30px gap) */
    z-index: 0; /* Detrás del contenido pero visible */
}

/* Ocultar la línea para el último item */
.step-item:last-child::before {
    display: none;
}

.step-item.active {
    opacity: 1;
}

.step-indicator {
    /* Definir variable para tamaño */
    --indicator-size: 35px; 
    width: var(--indicator-size);
    height: var(--indicator-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ccc; /* border-muted-foreground approx */
    background-color: #f0f0f0; /* bg-muted approx */
    flex-shrink: 0;
    font-weight: 600; /* semibold */
    font-size: 1rem; /* text-lg approx */
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    position: relative; /* Asegurar que esté sobre la línea */
    z-index: 1;
}

.step-item.active .step-indicator {
    background-color: #222; /* bg-primary */
    border-color: #222; /* border-primary */
    color: #fff; /* text-primary-foreground */
    transform: scale(1.1); /* scale-110 */
}

.step-indicator .checkmark {
    font-weight: 700; /* bold */
    color: #fff; /* Asegurar color blanco en checkmark */
}

.step-content h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* semibold */
    margin-bottom: 5px;
    color: #111;
}

.step-content p {
    font-size: 0.875rem; /* text-sm */
    color: #555; /* text-muted-foreground */
    line-height: 1.5;
    margin: 0;
}

.steps-image-container {
    order: 1; /* Imagen arriba en móvil */
    position: relative;
    height: 250px; /* Altura móvil */
    overflow: hidden;
    border-radius: 8px; /* rounded-lg */
}

.steps-image-wrapper {
    position: absolute;
    inset: 0;
}

.step-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateY(50px) rotateX(-10deg);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.step-image.active {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* --- Estilos Escritorio para Feature Steps --- */
@media (min-width: 769px) {
    .feature-steps-section .section-title {
        font-size: 2.5rem; /* text-4xl/5xl */
        margin-bottom: 60px;
    }

    .feature-steps-container {
        display: grid;
        grid-template-columns: 1fr 1fr; /* grid-cols-2 */
        gap: 60px; /* gap-10 approx */
        align-items: center; /* Centrar verticalmente el grid */
    }

    .steps-list {
        order: 1; /* Lista a la izquierda */
        gap: 40px;
    }

    .step-item {
        gap: 30px; /* gap-8 */
    }

    .step-indicator {
        /* Actualizar variable para tamaño desktop */
        --indicator-size: 40px;
        width: var(--indicator-size);
        height: var(--indicator-size);
    }

    /* Ajustar altura de línea para desktop (gap es 40px) */
    .step-item::before {
         height: calc(100% - var(--indicator-size, 40px) + 40px);
         left: calc(var(--indicator-size, 40px) / 2 - 1px); 
    }

    .step-content h3 {
        font-size: 1.5rem; /* text-2xl */
    }

    .step-content p {
        font-size: 1rem; /* text-lg */
    }

    .steps-image-container {
        order: 2; /* Imagen a la derecha */
        height: 400px; /* h-[400px] / h-[500px] */
        /* Si quieres la altura de 500px, cambia a: height: 500px; */
    }
}

/* --- Estilos Modal --- */
.modal-overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semitransparente */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.visible {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 3px; /* Sin bordes redondeados para estilo Zara */
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.visible .modal-content {
    transform: scale(1);
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 30px; /* Más espacio abajo */
    font-size: 1.2rem; /* Un poco más pequeño */
    font-weight: 400; /* Peso más ligero */
    text-align: center;
    color: #222;
    letter-spacing: 0.1em; /* Espaciado como en la imagen */
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: 300; /* Más delgado */
    color: #888;
    padding: 0;
    line-height: 1;
}


.form-group {
    margin-bottom: 30px; /* Aumentar espacio entre campos */
    position: relative; /* Necesario para posicionar la etiqueta */
}

.form-group label {
    position: absolute; /* Posición absoluta */
    top: 10px; /* Ajustar alineación vertical inicial */
    left: 0;
    font-size: 0.9rem; /* Reducir tamaño inicial de la etiqueta */
    color: #999; /* Gris claro */
    font-weight: 400;
    pointer-events: none; /* Para que el clic vaya al input */
    transition: all 0.2s ease; /* Transición suave */
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 10px 0px 8px 0; /* Ajustar padding vertical */
    border: none;
    border-bottom: 1px solid #ccc; /* Solo línea inferior gris */
    font-size: 0.9rem; /* Reducir tamaño de fuente del input */
    color: #333;
    background-color: transparent;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    position: relative;
    z-index: 1; /* Asegurar que el input esté sobre la label inicialmente si hay solapamiento */
}

/* Ocultar el placeholder real si usamos label flotante */
.form-group input::placeholder {
    color: transparent;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-bottom-color: #333; /* Línea más oscura al enfocar */
}

/* Estilo de la etiqueta cuando el input está enfocado o tiene contenido */
.form-group input[type="text"]:focus + label,
.form-group input[type="tel"]:focus + label,
.form-group input[type="text"]:not(:placeholder-shown) + label,
.form-group input[type="tel"]:not(:placeholder-shown) + label {
    top: -12px; /* Ajustar movimiento hacia arriba */
    font-size: 0.7rem; /* Reducir tamaño de etiqueta flotante */
    color: #555; /* Color más oscuro o el que prefieras */
    letter-spacing: 0.05em;
    z-index: 2;
}

.modal-submit-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #222;
    color: #fff;
    border: none;
    border-radius: 3; /* Sin bordes redondeados */
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.modal-submit-btn:hover {
    background-color: #f0f0f0; /* Ligero hover gris */
    color: #000;
}

/* --- Fin Estilos Modal --- */

/* --- Estilos Footer --- */
.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
}

.footer-contact .footer-phone {
    margin: 0;
}

.footer-contact .footer-phone a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact .footer-phone a:hover {
    color: #cccccc;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.8rem;
    margin: 0;
}

/* --- Estilos Escritorio para Footer --- */
@media (min-width: 769px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 60px;
    }

    .footer-links {
        flex-direction: row;
        gap: 30px;
    }

    .footer-brand {
        flex: 1;
    }

    .footer-contact {
        flex: 1;
        text-align: center;
    }

    .footer-links {
        flex: 1;
        justify-content: flex-end;
    }
}

/* --- Fin Estilos Footer --- */ 