body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

.container {
  max-width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 20px auto;
}

.btn-hero {
  display: inline-block;
  background: #C49A6C;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
}

/* GUÍA */
.guia {
  background: #fef6f6;
  padding: 80px 20px;
}

.guia-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.guia-texto {
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 30px;
}

.guia-texto h2 {
  font-size: 2em;
  color: #C49A6C;
  margin-bottom: 10px;
}

.guia-texto p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.btn-descarga {
  background: #C49A6C;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 20px;
}

.guia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guia-card {
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  padding-top: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.guia-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
}

.card-front {
  font-weight: bold;
}

.card-back {
  background: #C49A6C;
  color: #fff;
  transform: rotateY(180deg);
}

.guia-imagen {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guia-imagen img {
  max-width: 100%;
  border-radius: 8px;
}

/* VENTAJAS */
.suiza-ventajas {
  background: #C49A6C;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.suiza-ventajas h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.suiza-ventajas p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.ventaja-card {
  background: #fff;
  color: #333;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ventaja-card i {
  font-size: 2em;
  color: #C49A6C;
  margin-bottom: 10px;
}

.ventaja-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.ventaja-card p {
  font-size: 1em;
}

.ventaja-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}


.btn-contacto {
  display: inline-block;
  background: #fff;
  color: #C49A6C;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-contacto:hover {
  background: #ddd;
  color: #8B6C4D;
}

/* PROFESIONES */
.suiza-profesiones {
  background: #f5f7fa;
  padding: 80px 20px;
  text-align: center;
}

.suiza-profesiones h2 {
  font-size: 2.5em;
  color: #C49A6C;
  margin-bottom: 10px;
}

.suiza-profesiones p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

.profesiones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profesion-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.profesion-card i {
  font-size: 2em;
  color: #C49A6C;
  margin-bottom: 10px;
}

.profesion-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.profesion-card p {
  font-size: 1em;
}

.profesion-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer-suiza {
  background: #6F94A5;
  color: #fff;
  padding: 40px 20px;
}

.footer__content a {
  color: #fff;
}

.footer__content a:hover {
  text-decoration: underline;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); /* mejora la legibilidad sobre el vídeo */
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  background-color: rgba(0, 0, 0, 0.08); /* fondo negro sutil */
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-block;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}


.hero-content p {
  font-size: 1.2rem;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 2rem;
  line-height: 1.5;
  background-color: rgba(0, 0, 0, 0.08); /* fondo negro con solo 15% de opacidad */
  padding: 8px 14px;
  border-radius: 6px;
  display: inline-block;
}

.soon-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.soon-form input {
  padding: 12px 16px;
  width: 100%;
  max-width: 350px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  font-family: 'Open Sans', sans-serif;
}

.soon-form button {
  background-color: #6F94A5;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.soon-form button:hover {
  background-color: #5a7d8a;
}

.footer__img a {
  background-color: #6F94A5 !important;  /* Color Bélgica */
  color: white !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 30px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: background 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}

.footer__img a:hover {
  background-color: #002642 !important;  /* Versión más oscura al hacer hover */
}

.footer__content input[type="submit"] {
  background-color: #6F94A5 !important;
  color: white !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 30px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: background 0.3s ease !important;
}

.footer__content input[type="submit"]:hover {
  background-color: #6F94A5 !important;
}

/* ======================================================= */
/* ====== CÓDIGO RESPONSIVE COMPLETO PARA DUBÁI ====== */
/* ======================================================= */

@media (max-width: 800px) {

    /* --- 1. SOLUCIÓN PARA EL HEADER FIJO --- */
    body {
        padding-top: 110px; /* 40px (social-bar) + 70px (nav) */
    }

    /* Barra social */
    header .social-bar-dubai {
        min-height: 40px;
        height: auto;
        padding-top: 5px;
        padding-bottom: 5px;
        flex-wrap: nowrap;
        /* NUEVO ENFOQUE: Le damos la orden de centrar su contenido */
        justify-content: center !important;
    }

    /* Ocultamos texto para hacer espacio */
    header .social-bar-dubai .left,
    header .social-bar-dubai .right a[href^="mailto"] {
        display: none;
    }
    
    /* NUEVO ENFOQUE: Dejamos que el contenedor de iconos tenga su ancho natural */
    header .social-bar-dubai .right {
        width: auto !important;
        justify-content: flex-start; /* Reseteamos por si acaso */
        gap: 1.2rem;
    }

    /* Barra de navegación principal */
    nav.nav.dubai {
        top: 40px; /* Sincronizamos con la social bar */
    }


    /* --- 2. PERSONALIZACIÓN DEL MENÚ HAMBURGUESA PARA DUBÁI --- */
    .nav.dubai .nav__options {
        background-color: #ffffff; /* Fondo blanco */
    }

    .nav.dubai .nav__options li a,
    .nav.dubai .nav__options li button {
        color: #6F94A5; /* Color corporativo Dubái */
    }

    .nav.dubai #buttoNav.nav__button {
        background-color: #6F94A5;
    }

    .nav.dubai #buttoNav.nav__button p,
    .nav.dubai #buttoNav.nav__button i {
        color: #ffffff;
        border-color: #ffffff;
    }


    /* --- 3. AJUSTE DEL HERO CON VIDEO --- */
    .hero {
        height: auto;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
    }

    .hero-content {
        position: static;
        transform: none;
        padding: 40px 20px;
        max-width: 90%;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .soon-form {
        margin-top: 20px;
    }
}