* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    transition: all 0.3s ease; /* Transiciones suaves al cambiar colores */
}

html,
body {
    height: 100%;
    background-color: #121212; /* fondo oscuro principal */
    color: #e0e0e0; /* texto claro */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
}

/* Header */
.site-header {
    background: #1f1f1f;
    color: #fff;
    padding: 1rem 0;
}

.site-header {
    font-size: 1.6rem;
    color: #f5f5f5;
}

.logo {
    color: #FFD600;
    text-shadow: 0 0 3px rgba(255, 214, 0, 0.5);
    animation: logoGlow 8s infinite alternate;
}

@keyframes logoGlow {
    from {
        text-shadow: 0 0 2px rgba(255, 214, 0, 0.3);
    }
    to {
        text-shadow: 0 0 6px rgba(255, 214, 0, 0.7);
    }
}

.nav a {
    color: #cfcfcf;
    margin-left: 1rem;
    text-decoration: none;
    font-weight: 600;
}

.nav a:hover {
    color: #fff;
}

/* Hero */
.hero {
    padding: 3rem 1rem;
    background: linear-gradient(180deg, #1a1a1a, #121212);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* separa títulos, párrafos y botones */
}

.hero-text h2 {
    font-size: 2.2rem;
    color: #fff;
}

.hero-text p {
    color: #ccc;
    line-height: 1.6;
}

/* Botones */
.btn-primary {
    display: inline-block;
    background: #FFD700;          /* amarillo taxi */
    color: #121212;               /* texto oscuro */
    border: 2px solid #FFD700;    /* borde igual al fondo para que quede limpio */
    border-radius: 50px;          /* redondeado completo */
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #FFC107;          /* amarillo un poco más oscuro al pasar el mouse */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


/* Tarjetas */
.hero-card,
.service {
    background: #1f1f1f;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.5); 
    padding: 1.5rem;
    color: #e0e0e0;
    margin-top: 1rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Extras / lista */
.extras ul {
    margin-left: 20px;
    margin-top: 1rem;
    line-height: 1.6;
}

/* Contact */
.contacto {
    padding: 20px;
}

.contacto a {
    color: #bb86fc;
    text-decoration: none;
}

.contacto a:hover {
    color: #fff;
}

/* Footer */
.site-footer {
    background: #1f1f1f;
    color: #cfe;
    padding: 1rem 0;
    margin-top: 2rem;
    text-align: center;
}

.whatsapp-card ul {
    color: #e0e0e0;       /* texto en modo oscuro */
    list-style-position: inside; /* opcional: que los bullets queden dentro del padding */
}

/* Modal de idioma */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: #1f1f1f;
    padding: 2rem 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lang-options {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.lang-options img {
    width: 50px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
    border-radius: 5px;
    border: 2px solid transparent;
}

.lang-options img:hover {
    transform: scale(1.2);
    border-color: #bb86fc;
}

.slideshow-container {
  text-align: center;
  margin: 40px auto;
  max-width: 500px; /* ideal para móvil */
}

.slideshow img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slide {
  display: none;
}

.fade {
  animation: fade 1.5s;
}

@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}


/* Responsive */
@media (max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        float: none;
        margin-top: 0.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav a {
        display: inline-block;
        margin-left: 0.6rem;
        font-size: 0.9rem;
    }

    .hero-card {
        margin-top: 1rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}
/*
*
/* Modal Servicios para Empresas */
.empresa-modal {
  display: none; /* oculto por defecto */
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.empresa-modal-content {
  background-color: #1f1f1f;
  color: #e0e0e0;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.empresa-buttons {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-top: 1rem;
}

.close-empresa {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #FFD700;
}
