/* Definición de la fuente */
@import url('https://fonts.googleapis.com/css2?family=Centrale+Sans:wght@400;700&display=swap');

/* Configuración básica */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Centrale Sans', sans-serif;
}

body {
    background-color: WHITE;
    color: black;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #EFB600;
}

/* Estilo de los encabezados */
header {
    background-color: white;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Barra de navegación */
nav {
    display: flex;
    justify-content: center;
    background-color: #256172;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    background-color: #E78B00;
}

/* Sección principal */
.main-section {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #BF5000;
}

.main-section div {
    flex: 1;
    margin: 0 20px;
}

.main-section h2 {
    color: #EFB600;
}

.main-section p {
    color: #E78B00;
}

/* Estilo de pie de página */
footer {
    background-color: #08AEA0;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    color: #E78B00;
}

/* Estilo del encabezado */
header {
    background-color: var(--color-secundario);
    padding: 10px;
    text-align: center;
}

/* Contenedor del logo centrado */
.logo-container {
    display: flex;
    justify-content: center; /* Centrar el logo */
    align-items: center;
    margin-bottom: 15px;
}

/* Logo */
.logo-container img {
    width: 500px; /* Ajusta el tamaño del logo */
    height: auto;
}

/* Diseño responsivo */
@media (max-width: 768px) {
    .logo-container img {
        width: 80px; /* Reducir tamaño en móviles */
    }
}
/* ======== GALERÍA ======== */
.galeria {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--color-primario);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: auto;
}

.thumbnail {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

/* ======== LIGHTBOX ======== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* ======== SECCIÓN SERVICIOS ======== */
.servicios {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--color-primario);
}

.grid-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Tarjetas de servicio */
.card {
    background: var(--color-secundario);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.card h3 {
    font-size: 1.5rem;
    color: black;
    margin: 15px 0;
}

.card p {
    font-size: 1rem;
    color: rgb(3, 3, 3);
}

/* Botón */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: var(--color-acento-1);
    color: #012B39;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--color-acento-2);
}

/* ======== SECCIÓN SERVICIOS EN FILA ======== */
.grid-servicios {
    display: flex;
    justify-content: center; /* Centra los elementos horizontalmente */
    gap: 20px; /* Espacio entre tarjetas */
    flex-wrap: wrap; /* Permite que los elementos se acomoden en varias líneas en pantallas pequeñas */
}

/* Asegurar que las tarjetas tengan el mismo tamaño */
.card {
    flex: 1;
    max-width: 300px; /* Ancho máximo de cada tarjeta */
    min-width: 250px; /* Evita que las tarjetas sean muy pequeñas */
}

/* ======== BARRA DE NAVEGACIÓN EN FILA ======== */
nav ul {
    display: flex;
    justify-content: center; /* Centra los elementos del menú */
    gap: 20px; /* Espacio entre elementos */
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 10px 15px;
    transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
    background: var(--color-acento-1);
    color: #012B39;
    border-radius: 5px;
}

/* ======== SECCIÓN STREAMING ======== */
.streaming {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--color-primario);
    color: white;
}

/* ======== CARRUSEL ======== */
.carousel {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.carousel-container {
    display: flex;
    width: 100%; /* 4 imágenes, por eso 400% */
    animation: slide 15s infinite linear;
}

.carousel img {
    width: 100%;
    flex: 1 0 100%;
}

/* Botones del carrusel */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: background 0.3s;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Animación de deslizamiento */
@keyframes slide {
    0% { transform: translateX(0%); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    100% { transform: translateX(0%); }
}

/* ======== SECCIÓN ALQUILER DE EQUIPOS ======== */
.alquiler {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--color-primario);
    color: rgb(0, 0, 0);
}

/* Contenedor de equipos */
.grid-equipos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Tarjetas de equipos */
.equipo-card {
    background: var(--color-secundario);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    width: 250px;
}

.equipo-card:hover {
    transform: translateY(-5px);
}

.equipo-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.equipo-card h3 {
    font-size: 1.5rem;
    color: var(--color-acento-1);
    margin: 10px 0;
}

.equipo-card p {
    font-size: 1rem;
    color: rgb(0, 0, 0);
}

/* Botón */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: var(--color-acento-1);
    color: #012B39;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--color-acento-2);
}

body {
    font-family: 'Centrale Sans', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #012B39;
    padding: 1rem;
    margin: 0;
  }
  
  header nav ul li {
    margin: 0 1rem;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .contacto {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .contacto h2 {
    text-align: center;
    color: #012B39;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  form label {
    margin: 0.5rem 0 0.2rem;
    font-weight: bold;
  }
  
  form input,
  form textarea {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  form button {
    background-color: #08AEA0;
    color: rgb(0, 0, 0);
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  form button:hover {
    background-color: #256172;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #012B39;
    color: white;
    margin-top: 2rem;
  }
  
 /* -----------------------------
   ICONO WHATSAPP FLOTANTE
------------------------------ */

#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }
  
  #whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
  }
  
  #whatsapp-float img:hover {
    transform: scale(1.1);
  }

  /* -----------------------------
   ESTILOS PARA CONTACTO
------------------------------ */

.contacto-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Centrale Sans', sans-serif;
  }
  
  .contacto-container h2 {
    text-align: center;
    color: #012B39;
    margin-bottom: 20px;
  }
  
  .contacto-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contacto-container label {
    font-weight: bold;
    color: #256172;
  }
  
  .contacto-container input,
  .contacto-container textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .contacto-container textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .contacto-container button {
    background-color: #08AEA0;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .contacto-container button:hover {
    background-color: #256172;
  }

  .nosotros {
    background-color: #f9f9f9;
    padding: 60px 20px;
    color: #012B39;
    font-family: 'Centrale Sans', sans-serif;
  }
  
  .contenedor-nosotros {
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  .nosotros h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #08AEA0;
  }
  
  .nosotros h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #EFB600;
  }
  
  .nosotros p {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .valores {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  .valores li {
    margin-bottom: 8px;
    font-weight: 500;
    color: #256172;
    padding-left: 20px;
    position: relative;
  }
  
  .valores li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #BF5000;
  }

  .alquiler {
    padding: 60px 20px;
    background-color: #f2f2f2;
    font-family: 'Centrale Sans', sans-serif;
  }
  
  .titulo-seccion {
    text-align: center;
    font-size: 2.5rem;
    color: #012B39;
    margin-bottom: 30px;
  }
  
  .filtro-categorias {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .filtro {
    background-color: #08AEA0;
    color: white;
    border: none;
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
  }
  
  .filtro.activo {
    background-color: #E78B00;
  }
  
  .grid-equipos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .equipo-card {
    background-color: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .equipo-card img {
    width: 100%;
    border-radius: 12px;
  }
  
  .equipo-card h3 {
    margin: 15px 0 5px;
    color: #256172;
  }
  
  .precio {
    font-weight: bold;
    color: #BF5000;
  }
  
  .ver-detalle {
    margin-top: 10px;
    background-color: #EFB600;
    color: #012B39;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
  }
  
  .modal-contenido {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
  }
  
  .cerrar-modal {
    font-size: 2rem;
    cursor: pointer;
    align-self: flex-end;
  }
  
  .modal-galeria {
    text-align: center;
  }
  
  .imagen-principal {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .miniaturas {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  .miniatura {
    width: 60px;
    cursor: pointer;
    border-radius: 6px;
  }
  
  .modal-detalle {
    margin-top: 20px;
  }
  
  .btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 10px;
    text-decoration: none;
  }
  

  .modal-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .modal-gallery img {
    width: 23%;
    border-radius: 5px;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center; align-items: center;
  }
  
  .modal-content {
    background-color: #fff;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease;
  }
  
  .modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    padding: 20px;
  }
  
  .modal-gallery img {
    width: 100%;
    height: auto;
    max-height: 250px; /* o el valor que prefieras */
    border-radius: 8px;
    object-fit: contain; /* asegura que la imagen no se recorte */
    background-color: #f0f0f0; /* opcional para fondo neutro */
  }
  
  
  
  .close {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  /* Definición de la fuente */
@import url('https://fonts.googleapis.com/css2?family=Centrale+Sans:wght@400;700&display=swap');

/* Configuración básica */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Centrale Sans', sans-serif;
}

body {
    background-color: WHITE;
    color: black;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #EFB600;
}

/* Estilo de los encabezados */
header {
    background-color: white;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Barra de navegación */
nav {
    display: flex;
    justify-content: center;
    background-color: #256172;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    background-color: #E78B00;
}

/* Sección principal */
.main-section {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #BF5000;
}

.main-section div {
    flex: 1;
    margin: 0 20px;
}

.main-section h2 {
    color: #EFB600;
}

.main-section p {
    color: #E78B00;
}

/* Estilo de pie de página */
footer {
    background-color: #08AEA0;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    color: #E78B00;
}

/* Logo */
.logo-container img {
    max-width: 100%;
    width: clamp(120px, 18vw, 300px);
    height: auto;
}

/* Diseño responsivo */
@media (max-width: 768px) {
    .logo-container img {
        width: 80px;
    }
}

/* ======== GALERÍA ======== */
.galeria {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--color-primario);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Tarjetas de servicio */
.card {
    background: var(--color-secundario);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.card h3 {
    font-size: 1.5rem;
    color: black;
    margin: 15px 0;
}

.card p {
    font-size: 1rem;
    color: rgb(3, 3, 3);
}

/* Botón */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: var(--color-acento-1);
    color: #012B39;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--color-acento-2);
}

/* ======== SECCIÓN SERVICIOS ======== */
.servicios {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--color-primario);
}

.grid-servicios {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(12px, 2.5vw, 24px);
    align-items: stretch;
    max-width: 1200px;
    margin: auto;
}

/* Tarjetas de equipos */
.equipo-card {
    background: var(--color-secundario);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    width: min(100%, 320px);
}

.equipo-card:hover {
    transform: translateY(-5px);
}

.equipo-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.equipo-card h3 {
    font-size: 1.5rem;
    color: var(--color-acento-1);
    margin: 10px 0;
}

.equipo-card p {
    font-size: 1rem;
}

/* ===== VKSTUDIO responsive baseline ===== */
img, video, canvas, svg { max-width:100%; height:auto; display:block; }
iframe { max-width:100%; width:100%; }
html { overflow-wrap:anywhere; }
:root{
  --fs-0: clamp(1rem, 0.95rem + 0.4vw, 1.125rem);
  --fs-1: clamp(1.25rem, 1.05rem + 1.0vw, 1.75rem);
  --fs-2: clamp(1.6rem, 1.2rem + 2.0vw, 2.2rem);
}
body{ font-size: var(--fs-0); line-height:1.5; }
h1{ font-size: var(--fs-2); line-height:1.1; }
h2{ font-size: var(--fs-1); }
.container, .contenedor, .wrapper{
  max-width: 1200px; margin-inline:auto; padding-inline: clamp(16px, 4vw, 32px);
}
@media (max-width: 768px){
  section, .section, .bloque { padding: clamp(16px, 4vw, 24px) 0; }
}

  