/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Titillium Web;
  color: #000;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

main.content {
  margin-top: 0;
  padding-top: 0;
  font-size: 18px;
}

.content {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

/* ===== CONTENEDOR ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR BASE */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1000;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

/* CONTENEDOR FLEX */
/* Contenedor principal */
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Contenedor de logo + links */
.nav-left {
  display: flex;
  align-items: center;
  gap: 25px; /* espacio entre logo y links */
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}


/* LOGO */
.nav-left .logo img {
  height: 40px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff5733;
}

/* BOTÓN + IDIOMA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* BOTÓN RESERVA */
.nav-btn {
  background: #ff5733;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: #e74c3c;
}

/* DROPDOWN DE IDIOMA */
.language-dropdown {
  position: relative;
}

#lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
}

#lang-btn img {
  width: 24px;
  height: 24px;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 100;
}

.lang-menu div {
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.lang-menu div:hover {
  background: #f0f0f0;
}

/* HAMBURGUESA */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}




.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 60px;
}

.slider {
  position: relative;
  height: 100%;
  width: 100%;
}

/* Cada slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.2rem;
}

.fotos-ejecutivo-section {
  max-width: 400px;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}

.fotos-ejecutivo-titulo {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}


.fotos-ejecutivo-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.fotos-ejecutivo-item {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}

.fotos-ejecutivo-item img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  background-color: #000;
  border-bottom: 1px solid #ddd;
}

.fotos-ejecutivo-item h3 {
  margin: 15px 10px 5px;
  color: #333;
}

.fotos-ejecutivo-item p {
  margin: 0 15px 20px;
  color: #555;
}

.fotos-ejecutivo-controles {
  text-align: center;
  margin-top: 15px;
}

.fotos-ejecutivo-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.fotos-ejecutivo-dot.active {
  background-color: #ff5733;
}


/*------------------------------------*/
.evento-section {
  max-width: 600px;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}

.evento-titulo {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}


.evento-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.evento-item {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}

.evento-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  background-color: #000;
  border-bottom: 1px solid #ddd;
}

.evento-item h3 {
  margin: 15px 10px 5px;
  color: #333;
}

.evento-item p {
  margin: 0 15px 20px;
  color: #555;
}

.evento-controles {
  text-align: center;
  margin-top: 15px;
}

.evento-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.evento-dot.active {
  background-color: #ff5733;
}

.iframe-section {
  padding: 40px 20px;
  background: #ffffff;
  text-align: center;
}

.iframe-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff5733;
}

.iframe-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  margin: 2rem auto 3rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Titillium Web', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.titulo-form {
  text-align: center;
  font-size: 1.8rem;
  color: #ff5733;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #f9fafb;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff5733;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.3);
  outline: none;
  background-color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
  font-size: 0.9rem;
}

/* ----- Botón ----- */
.btn-submit {
  background: linear-gradient(90deg, #ff5733, #ff7849);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: linear-gradient(90deg, #ff7849, #ff5733);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 87, 51, 0.4);
}

/* ----- Responsive ----- */
@media (max-width: 640px) {
  .contact-form {
    width: 90%;
    padding: 1.5rem;
  }

  .titulo-form {
    font-size: 1.5rem;
  }

  .btn-submit {
    font-size: 1rem;
  }
}

.video-container {
  width: 70%;
  margin: 2rem auto;
  position: relative;
  padding-bottom: 40%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.video-section {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.video-responsive {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 5px;
}

.video-overlay h1 {
  color: #fff;
  font-size: 28px;
  margin: 0;
}

.horario-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f8f8;
  margin-top: 40px;
}

.horario-section h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.horario-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #666;
}

.horario-section img {
  display: inline-block;
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.whatsapp-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-family: sans-serif;
}

.whatsapp-popup img {
  margin-right: 10px;
}

footer {
  background: #111827;
  color: #d1d5db;
  padding: 20px 40px;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  margin: 0;
  margin-bottom: 10px;
}

.social-icons {
  margin: 10px 0;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0) invert(0.8); 
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}

.terms-link {
  margin-top: 8px;
}

.terms-link a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.terms-link a:hover {
  color: #ff5733; 
}

/* Responsivo */
@media (max-width: 640px) {
  .footer-content {
    padding: 0 10px;
  }

  .social-icons {
    margin-top: 10px;
  }

  .terms-link {
    margin-top: 12px;
  }
}


