/* Registramos la fuente local */
@font-face {
    font-family: 'goodtime'; /* Poné el nombre que quieras usar */
    src: url('fonts/Good Times Rg.otf') format('opentype'); /* Ajustá el nombre del archivo y la extensión */
    font-weight: normal;
    font-style: normal;
}

/* RESET Y VARIABLES */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --amarillo-neon: #ffef00; 
    --amarillo-soft: rgba(255, 239, 0, 0.25);
    --blanco: #ffffff;
    --negro-bg: #0a0a0a;
    --gris-grid: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--negro-bg);
    background-image: 
        linear-gradient(var(--gris-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--gris-grid) 1px, transparent 1px),
        radial-gradient(circle at top right, var(--amarillo-soft) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    background-attachment: fixed;
    font-family: 'Montserrat', sans-serif;
    color: var(--blanco);
    overflow-x: hidden;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo-store {
    font-family: 'goodtime', sans-serif; /* El nombre que definiste arriba */
    font-size: 42px;
    letter-spacing: 15px; 
    color: var(--amarillo-neon);
    text-transform: uppercase;
    margin: 0;
}
.logo-logistica { font-size: 20px; letter-spacing: 4px; color: var(--blanco); display: block; text-align: right; }

nav ul { display: flex; list-style: none; gap: 30px; }
nav a { text-decoration: none; color: var(--blanco); font-size: 13px; text-transform: uppercase; transition: 0.3s; }
nav a:hover, nav a.active { color: var(--amarillo-neon); }

/* HERO */
.hero { display: flex; padding: 0 80px; align-items: center; justify-content: space-between; height: 85vh; }
.hero-text h1 { font-size: 80px; font-weight: 700; line-height: 0.9; text-transform: uppercase; }
.yellow-text { color: var(--amarillo-neon); }
.slideshow-container { width: 500px; height: 400px; border-radius: 20px; overflow: hidden; background: #000; border: 1px solid rgba(255, 255, 255, 0.1); }

/* SECCIÓN SONIDO */
.nosotros-section { padding: 60px 10%; }
.nosotros-container { max-width: 1100px; margin: 0 auto; color: #bbb; line-height: 1.8; font-size: 17px; }
.nosotros-flex { display: flex; align-items: center; gap: 60px; margin-top: 40px; }
.nosotros-logo img { width: 180%; border-radius: 20px; box-shadow: 0 0 30px rgba(255, 239, 0, 0.05); }

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Hace que sea responsivo */
    gap: 20px;
    margin-top: 30px;
}

.foto-placeholder {
    width: 100%;
    height: 250px; /* Altura fija para que todas las fotos midan lo mismo */
    background-color: #1a1a1a;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;      /* La foto cubre todo el espacio */
    background-position: center; /* Centra la imagen */
    transition: transform 0.3s ease;
}

.foto-placeholder:hover {
    transform: scale(1.03); /* Efecto de zoom suave al pasar el mouse */
    border-color: #ffcc00;  /* El amarillo característico de tu marca */
}
/* PLANES DE STREAMING (ESTILOS RESTAURADOS) */
.planes-section { padding: 80px 10%; text-align: center; }
.section-title { font-size: 45px; margin-bottom: 50px; text-transform: uppercase; font-weight: 900; }
.cards-container { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }

.card { 
    background: rgba(255,255,255,0.02); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 20px; 
    padding: 40px 25px; 
    width: 320px; 
    text-align: center; 
    transition: 0.3s; 
    position: relative;
    display: flex;
    flex-direction: column;
}

.card.featured { border: 2px solid var(--amarillo-neon); transform: scale(1.05); background: rgba(255, 239, 0, 0.02); }

.pop-tag {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--amarillo-neon); color: #000; padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 900;
}

.quota-circle { width: 80px; height: 80px; border: 2px solid var(--amarillo-neon); border-radius: 50%; margin: 20px auto; display: flex; align-items: center; justify-content: center; color: var(--amarillo-neon); font-weight: 900; }

.card ul { list-style: none; padding: 0; margin: 20px 0 30px 0; text-align: left; }
.card ul li { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 14px; }

.btn-card { background: var(--amarillo-neon); color: #000; padding: 15px; border: none; border-radius: 10px; font-weight: 900; cursor: pointer; text-transform: uppercase; }

/* CONTACTO */
.contacto-section { padding: 80px 10%; text-align: center; }
.divider { width: 60px; height: 2px; background: var(--amarillo-neon); margin: 15px auto 30px auto; }
.contacto-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.contacto-form input, .contacto-form textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); padding: 15px; color: #fff; border-radius: 5px; font-family: inherit; }
.contacto-form input:focus { border-color: var(--amarillo-neon); outline: none; }

/* MODAL Y FORM-ROW */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); }
.modal-content { background: #0d0d0d; margin: 5% auto; padding: 30px; border: 1px solid var(--amarillo-neon); width: 90%; max-width: 450px; border-radius: 20px; position: relative; }
.modal-content input { width: 100%; margin-bottom: 10px; padding: 12px; background: #1a1a1a; border: 1px solid #333; color: #fff; }
.form-row { display: flex; gap: 10px; margin-bottom: 10px; }
.form-row input { margin-bottom: 0; }
.close { position: absolute; top: 15px; right: 20px; font-size: 25px; cursor: pointer; color: white; }

/* RESPONSIVE */
@media (max-width: 850px) {
    header { padding: 20px; flex-direction: column; gap: 15px; }
    nav ul { gap: 15px; font-size: 11px; flex-wrap: wrap; justify-content: center; }
    .hero { flex-direction: column; height: auto; padding: 40px 20px; text-align: center; }
    .hero-text h1 { font-size: 45px; margin-bottom: 30px; }
    .slideshow-container { width: 100%; height: 250px; }
    .nosotros-flex { flex-direction: column; }
    .card { width: 100%; transform: none !important; margin-bottom: 20px; }
}

.fade-in { animation: fadeIn 1.5s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Esto para que los slides tengan tamaño */
.slideshow-container { 
    width: 500px; 
    height: 400px; 
    border-radius: 20px; 
    overflow: hidden; 
    background: #000; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    position: relative; /* Importante para que los slides se ubiquen acá adentro */
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute; /* Las apila una sobre otra */
    top: 0;
    left: 0;
    opacity: 0; /* Las oculta a todas por defecto */
    transition: opacity 1s ease-in-out; /* Efecto de fundido suave */
}

.slide.active {
    opacity: 1; /* Solo la que tenga la clase 'active' se va a ver */
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #121001;
    color: #dbc625;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* Para que siempre esté arriba de todo */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #dbc625;
}

/* --- AJUSTES PARA QUE SE VEA BIEN EN MÓVILES --- */
@media (max-width: 768px) {
    /* El contenedor de fotos ahora es flexible */
    .slideshow-container {
        width: 95% !important; 
        height: 250px !important; /* Más bajito para que no ocupe toda la pantalla */
        margin: 10px auto;
    }

    /* Agrandamos los títulos para que sean legibles */
    .hero-text h1 {
        font-size: 1.8rem !important; 
        text-align: center;
        padding: 0 10px;
    }

    /* El menú se pone uno debajo del otro para que sea fácil tocar con el dedo */
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
    }

    /* Las tarjetas de precios de streaming ahora ocupan todo el ancho */
    .nosotros-container, .streaming-container {
        padding: 15px;
    }
}@media (max-width: 768px) {
    nav ul {
        flex-direction: column; /* Menú en lista */
        background: rgba(0,0,0,0.9); /* Fondo para que se lea bien */
        padding: 10px;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 1.8rem !important; /* Texto más grande para el celu */
    }
}