* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
       margin: 0;
    min-height: 100vh;
    background: #000;   /* o 'none' si quieres que no tenga color */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* CONTENEDOR PRINCIPAL */

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;   
    max-width: 100%;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Filtro oscuro encima del fondo */
.slider-container .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.6));
    pointer-events: none;
    z-index: 1;
}

/* CARRUSEL INTERIOR */

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    z-index: 2; /* por encima del overlay */
}

/* Tarjetas */

.item {
     position: absolute;
    width: 220px;
    height: 330px;
    border-radius: 26px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.55);
    transition: 0.6s;
    overflow: hidden;
}

/* Posicionamiento estilo "principal + lateral" */
.item:nth-child(1) {
    left: -40%;
	top:50%;
    opacity: 0;
    pointer-events: none;
}
.item:nth-child(2) {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Tarjeta secundaria (la de la derecha) */
.item:nth-child(3) {
    left: 80%;              /* antes ~45% */
    top: 50%;
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.85;
}
.item:nth-child(n+4) {
    left: 100%;
    opacity: 0;
    pointer-events: none;
}

/* Contenido dentro de la tarjeta principal */

/* Solo la tarjeta principal muestra texto (la #2) */
.item:nth-child(2) .content {
    opacity: 1;
    transform: translateY(0);
}

/* Título grande tipo "AUSTRALIA" */
.name {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* Descripción */
.des {
    font-size: 14px;
    max-width: 80%;
    opacity: 0.9;
}

/* BOTONES */

.buttons {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.buttons button {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.95);
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.15s, box-shadow 0.15s;
}

.buttons button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Responsivo simple */

@media (max-width: 768px) {
    .slider-container {
        height: 360px;
    }

    .slide {
        padding: 32px 24px;
    }

    .item {
        width: 180px;
        height: 280px;
    }

    .item:nth-child(2) {
        left: 8%;
    }
    .item:nth-child(3) {
        left: 55%;
    }

    .name {
        font-size: 24px;
    }
}
.hero-text {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    max-width: 260px;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.hero-des {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}


/* Opcional: en pantallas pequeñas, centramos un poco */
@media (max-width: 768px) {
    .hero-text {
        left: 24px;
        max-width: 200px;
    }
}
