/* styles.css */
:root {
    --color-magenta: #E20074;
    --color-magenta-light: #FF4DA6;
    --color-white: #FFFFFF;
    --color-dark: #333333;
    --color-gray: #F5F5F5;
    --color-gray-dark: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    scroll-behavior: smooth;
    padding-top: 0; /* Eliminar padding que causaba problemas */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header mejorado para responsive */
header {
    background-color: var(--color-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Logos principales */
.main-logo {
    height: 70px;
    display: flex;
    align-items: center;
}

/* Segundo logo */
.secondary-logo {
    height: 60px;
    display: flex;
    align-items: center;
    border-left: 2px solid var(--color-gray);
    padding-left: 20px;
}

.logo-img, .secondary-logo-img {
    height: 100%;
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.secondary-logo .secondary-logo-img {
    max-height: 60px;
}

/* Hero mejorado para responsive */
.hero {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 500px;
    color: var(--color-white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px; /* Espacio para header fijo */
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 0;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll down mejorado */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-down-link {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Botones */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    min-height: 48px; /* Mejor accesibilidad táctil */
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-primary {
    background-color: var(--color-magenta);
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn:hover, .btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    outline: none;
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
    background-color: #128C7E;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-magenta-light);
}

/* Servicios */
.services {
    padding: 60px 0;
    background-color: var(--color-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-dark);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-title span {
    color: var(--color-magenta);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover, .service-card:focus-within {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    background-color: var(--color-gray);
    border-bottom: 3px solid var(--color-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--color-magenta);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Sliders mejorados para responsive */
.slider-section {
    padding: 60px 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.testimonials-slider {
    max-width: 1200px;
}

.logos-slider {
    max-width: 1400px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-track.testimonials {
    gap: 20px;
}

.slider-track.logos {
    gap: 15px;
}

.testimonial-slide {
    min-width: calc(100% - 20px);
    background-color: var(--color-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 0 0 auto;
}

.logo-slide {
    min-width: calc(50% - 15px);
    height: 100px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 15px;
    flex: 0 0 auto;
}

.logo-slide img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-magenta);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover, .slider-btn:focus {
    background-color: var(--color-magenta-light);
    outline: none;
}

.slider-btn.prev {
    left: 5px;
}

.slider-btn.next {
    right: 5px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: var(--color-magenta);
}

/* Aliados */
.allies {
    background-color: var(--color-gray);
}

.allies-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-gray-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
}

/* Contacto */
.contact {
    padding: 60px 0;
    background-color: var(--color-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info h3 {
    color: var(--color-magenta);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    background-color: var(--color-magenta);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-magenta);
    box-shadow: 0 0 0 2px rgba(226, 0, 116, 0.1);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.privacy-notice {
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.privacy-notice input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 40px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-main-logo, .footer-secondary-logo {
    height: auto;
    width: 100%;
    max-width: 200px;
    object-fit: contain;
}

.footer-secondary-logo {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 15px;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--color-magenta-light);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

.copyright a {
    color: var(--color-magenta-light);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover, .whatsapp-float:focus {
    background-color: #128C7E;
    transform: scale(1.1);
    outline: none;
}

/* Animaciones generales */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Mejoras de accesibilidad */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-magenta);
    color: white;
    padding: 8px;
    z-index: 1001;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles para accesibilidad */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--color-magenta);
    outline-offset: 2px;
}

/* Responsive mejorado */
@media (min-width: 768px) {
    .hero {
        height: calc(100vh - 90px);
        min-height: 600px;
        padding-top: 90px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-logos {
        flex-direction: row;
        align-items: center;
    }
    
    .footer-secondary-logo {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        border-top: none;
        padding-left: 20px;
        padding-top: 0;
        margin-top: 0;
    }
    
    .testimonial-slide {
        min-width: calc(50% - 15px);
    }
    
    .logo-slide {
        min-width: calc(33.333% - 15px);
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-slide {
        min-width: calc(33.333% - 20px);
    }
    
    .logo-slide {
        min-width: calc(20% - 15px);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .scroll-down-link {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .secondary-logo {
        border-left: none;
        border-top: 1px solid var(--color-gray);
        padding-left: 0;
        padding-top: 10px;
    }
    
    .hero {
        height: calc(100vh - 150px);
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .slider-btn {
        display: none; /* Ocultar flechas en móvil muy pequeño */
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary, .btn-whatsapp {
        border: 2px solid black;
    }
    
    .service-card {
        border: 1px solid black;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-down {
        animation: none;
    }
}

/* =========================================== */
/* SLIDERS MEJORADOS Y CORREGIDOS              */
/* =========================================== */

.slider-section {
    padding: 80px 0;
    overflow: hidden;
}

.testimonials {
    background-color: var(--color-white);
}

.allies {
    background-color: var(--color-gray);
}

/* Contenedor principal del slider */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

/* Pista del slider */
.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 25px;
}

/* ESTILOS PARA TESTIMONIOS */
.testimonial-slide {
    flex: 0 0 auto;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 0, 116, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-magenta-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-author strong {
    color: var(--color-dark);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author small {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

.stars {
    color: #FFCC00;
    font-size: 1.1rem;
    margin: 15px 0;
}

/* ESTILOS PARA LOGOS DE ALIADOS */
.logo-slide {
    flex: 0 0 auto;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 120px;
}

.logo-slide:hover {
    transform: translateY(-3px);
    border-color: var(--color-magenta-light);
    box-shadow: 0 8px 20px rgba(226, 0, 116, 0.1);
}

.logo-slide img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* BOTONES DE NAVEGACIÓN */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-magenta);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(226, 0, 116, 0.2);
}

.slider-btn:hover,
.slider-btn:focus {
    background-color: var(--color-magenta-light);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(226, 0, 116, 0.3);
    outline: none;
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

/* PUNTOS DE NAVEGACIÓN */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
    flex-wrap: wrap;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover,
.slider-dot:focus {
    background-color: var(--color-magenta-light);
    transform: scale(1.2);
    outline: none;
}

.slider-dot.active {
    background-color: var(--color-magenta);
    transform: scale(1.2);
}

/* ANCHOS RESPONSIVE PARA SLIDES */
/* Móvil - 1 testimonio, 2 logos */
.testimonial-slide {
    width: calc(100% - 20px);
}

.logo-slide {
    width: calc(50% - 12.5px);
}

/* Tablet (768px+) - 2 testimonios, 3 logos */
@media (min-width: 768px) {
    .slider-container {
        padding: 0 50px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .testimonial-slide {
        width: calc(50% - 12.5px);
    }
    
    .logo-slide {
        width: calc(33.333% - 16.7px);
    }
}

/* Desktop (992px+) - 3 testimonios, 5 logos */
@media (min-width: 992px) {
    .testimonial-slide {
        width: calc(33.333% - 16.7px);
    }
    
    .logo-slide {
        width: calc(20% - 20px);
    }
    
    .slider-container {
        padding: 0 60px;
    }
}

/* Desktop grande (1200px+) */
@media (min-width: 1200px) {
    .slider-container {
        padding: 0 70px;
    }
}

/* Móviles muy pequeños (480px-) - Ocultar botones */
@media (max-width: 480px) {
    .slider-container {
        padding: 0 20px;
    }
    
    .slider-btn {
        display: none; /* Ocultar en móviles muy pequeños */
    }
    
    .testimonial-slide {
        padding: 20px;
        min-height: 250px;
    }
    
    .logo-slide {
        height: 100px;
        padding: 15px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Soporte para touch en móviles */
.slider-track {
    touch-action: pan-y;
}

/* Mejoras de accesibilidad para navegación por teclado */
.slider-btn:focus,
.slider-dot:focus {
    outline: 2px solid var(--color-magenta);
    outline-offset: 2px;
}

/* Animación para cuando se cambian los slides */
@keyframes fadeInSlide {
    from {
        opacity: 0.7;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-track {
    animation: fadeInSlide 0.5s ease;
}

/* =========================================== */
/* FOOTER - LOGO ÚNICO (DERECHO)                */
/* =========================================== */

.footer-logo-single {
    margin-bottom: 20px;
    text-align: left;
}

.footer-logo {
    height: auto;
    max-width: 300px;  /* Ancho máximo para controlar tamaño */
    width: auto;
    max-height: 60px;  /* Altura máxima consistente */
    object-fit: contain;
}

/* Asegurar que el logo se vea bien en fondo oscuro */
.footer-logo[src*="blanco"] {
    filter: brightness(1.2); /* Mejorar visibilidad si es logo blanco */
}

/* Responsive para el footer */
@media (max-width: 768px) {
    .footer-logo-single {
        text-align: center;
    }
    
    .footer-logo {
        max-width: 250px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 200px;
        max-height: 40px;
    }
}

/* Eliminar estilos antiguos de dos logos si existen */
.footer-logos,
.footer-main-logo,
.footer-secondary-logo {
    display: none; /* Ocultar cualquier estilo antiguo */
}

/* Si hay contenedor con dos logos, mostrar solo uno */
.footer-logos img:first-child {
    display: none; /* Ocultar el primer logo (izquierdo) */
}

.footer-logos img:last-child {
    display: block; /* Mostrar solo el segundo logo (derecho) */
    margin: 0 auto;
}