/* Imágenes de fondo específicas por país para la sección de bienvenida */

.welcome-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* España */
.welcome-section.spain,
.welcome-section.españa {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1539650116574-75c0c6d73c6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Colombia */
.welcome-section.colombia {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1551698618-1dfe5d97d256?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* México */
.welcome-section.mexico,
.welcome-section.méxico {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1518105779142-d975f22f1d04?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Argentina */
.welcome-section.argentina {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1589909202802-8f4aadce1849?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Chile */
.welcome-section.chile {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1555881604-2f6b1a1a3e5e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Perú */
.welcome-section.peru,
.welcome-section.perú {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1526392060635-9d6019884377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Ecuador */
.welcome-section.ecuador {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Paraguay */
.welcome-section.paraguay {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1516259762381-22954d7d3ad2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Uruguay */
.welcome-section.uruguay {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Asegurar que el texto sea legible sobre las imágenes */
.welcome-section .welcome-title,
.welcome-section .welcome-description {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

