.swiffy-hero {
  margin: 0;
  padding: 0;
}
.swiffy-hero img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 21 / 9; /* ajusta según tu diseño */
}
css
/* Contenedor del slider */
.swiffy-slider {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

/* Altura del slider */
.swiffy-slider .slider-container {
    height: 500px; /* Ajusta según necesites */
}

/* Imágenes del slider */
.swiffy-slider .slider-container li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Flechas de navegación */
.swiffy-slider .slider-nav {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.swiffy-slider .slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Indicadores (puntos) */
.swiffy-slider .slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.swiffy-slider .slider-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
}

.swiffy-slider .slider-indicators button.active,
.swiffy-slider .slider-indicators button:hover {
    background: white;
}

#footer {
    background: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
}

.footer-info {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .swiffy-slider .slider-container {
        height: 300px;
    }
    
    .swiffy-slider .slider-nav {
        width: 40px;
        height: 40px;
    }
}