body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #FF8C00, #FF4500);
    color: #333;
}

.container {
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

.background-image {
    max-width: 60%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: -1;
}

.tagline {
    font-size: 1.2rem;
    color: #FF8C00;
    margin-bottom: 10px;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    color: #2F4F4F;
}

.title span {
    color: #FF4500;
}

.subtitle {
    font-size: 1.5rem;
    color: #333;
    margin: 10px 0 20px;
}

.unique-title-bristol {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.unique-title-bristol span {
  color: #f39c12;
}


.button {
    background-color: #FF8C00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #FF4500;
    color: #f2f2f2;
}



.section {
    padding: 50px 20px;
    text-align: center;
    
}
.section h1 {
  font-size: 2.5vw; /* Escala dinámica basada en el ancho de la ventana */
  color: #f2f2f2;
  font-weight: bold;
  margin-bottom: 2vh; /* Margen ajustado a la altura de la ventana */
  text-align: center; /* Asegura que el texto esté centrado */
}

/* Media Queries para pantallas medianas */
@media (max-width: 768px) {
  .section h1 {
      font-size: 6vw; /* Ajuste para tablets o pantallas medianas */
      margin-bottom: 3vh;
  }
}

/* Media Queries para pantallas pequeñas (móviles) */
@media (max-width: 480px) {
  .section h1 {
      font-size: 7vw; /* Ajuste adicional para móviles */
      margin-bottom: 4vh;
  }
}


.section p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.section img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.cta-button {
    background-color:#FF8C00;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color:  #FF4500;
    color: #f2f2f2;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Permite que los elementos se ajusten en pantallas pequeñas */
}

.text-content {
    flex: 1;
    text-align: left;
}

.images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.images .main-image {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    height: 390px; /* Ajusta este valor según la altura que quieras */
    object-fit: cover; /* Asegura que la imagen se ajuste sin distorsionarse */
}


.images .crossed-image {
    position: absolute;
    width: 60%;
    max-width: 200px;
    transform: rotate(-10deg);
    top: 50%;
    height: auto; 
    left: 20%;
    z-index: 1;
    border: 5px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.unique-section-paradise {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    padding: 20px;
    color: #fff;
    background-image: url('./imagenes/17.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.unique-text-content {
    max-width: 50%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.unique-text-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.unique-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f39c12;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.unique-cta-button:hover {
    background-color: #e67e22;
    color: #f9f9f9;
}

.unique-section-miramar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Asegura que el contenedor cubra toda la altura del viewport */
  width: 100vw; /* Asegura que el contenedor cubra todo el ancho de la pantalla */
  padding: 0;
  margin: 0;
  color: #fff;
  text-align: center;

  /* Imagen de fondo */
  background-image: url('./imagenes/32.png');
  background-size: 100% 100%; /* Estira la imagen para que ocupe todo el ancho y la altura */
  background-position: top center; /* Centra la imagen horizontalmente */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
}



.unique-content-miramar {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.unique-content-miramar h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.unique-content-miramar p {
    font-size: 2.1rem;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.unique-container-bristol {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  text-align: center;
  color: white;

  /* Imagen de fondo */
  background-image: url('./imagenes/25.png');
  background-size: cover; /* Asegura que cubra el ancho completo */
  background-position: top center; /* Prioriza la parte superior */
  background-repeat: no-repeat;
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 768px) {
  .unique-container-bristol {
      background-size: cover; /* Mantén la imagen ajustada */
      background-position: center 80%; /* Ajusta ligeramente hacia la parte inferior */
  }
}

/* Media Queries para pantallas muy pequeñas (móviles) */
@media (max-width: 480px) {
  .unique-container-bristol {
      background-size: cover; /* Mantén la imagen escalada */
      background-position: center 70%; /* Aumenta la visibilidad de la parte inferior */
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;900&display=swap');

.unique-tagline-bristol {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5vw; /* Escala según el ancho de la pantalla */
    margin-bottom: 1vh; /* Escala según la altura de la pantalla */
    font-weight: 700; /* Negrita */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.unique-title-bristol {
    font-family: 'Poppins', sans-serif;
    font-size: 3vw; /* Escala según el ancho de la pantalla */
    font-weight: 900; /* Extra negrita */
    margin-bottom: 2vh;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.unique-title-bristol span {
    color: #f39c12;
}

.unique-subtitle-bristol {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8vw; /* Escala según el ancho de la pantalla */
    margin-bottom: 3vh;
    font-weight: 700; /* Negrita */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 768px) {
    .unique-tagline-bristol {
        font-size: 4vw;
    }

    .unique-title-bristol {
        font-size: 5vw;
    }

    .unique-subtitle-bristol {
        font-size: 4.5vw;
    }
}

/* Media Queries para pantallas muy pequeñas (móviles) */
@media (max-width: 480px) {
    .unique-tagline-bristol {
        font-size: 5vw;
        margin-bottom: 2vh;
    }

    .unique-title-bristol {
        font-size: 6vw;
        margin-bottom: 3vh;
    }

    .unique-subtitle-bristol {
        font-size: 5.5vw;
    }
}


.unique-button-bristol {
    padding: 15px 30px;
    background-color: #f39c12;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.unique-button-bristol:hover {
    background-color: #e67e22;
}

.unique-footer-bristol {
    position: absolute;
    bottom: 10px;
    font-size: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 30px 10px;
    }

    .background-image {
        max-width: 80%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .text-content,
    .images {
        flex: none;
        text-align: center;
        width: 100%;
    }

    .images .main-image {
        max-width: 100%;
    }

    .unique-text-content,
    .unique-content-miramar {
        max-width: 90%;
        padding: 15px;
    }

    .unique-section-paradise,
    .unique-section-miramar {
        height: auto;
        padding: 20px;
    }
}

.section {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.section-background {
  background: linear-gradient(to bottom right, #ff9800, #ffcc80);
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}


/* Logo responsivo */
.navbar-brand img {
  max-height: 7rem; /* El logo ocupará toda la altura disponible del navbar */
  height: auto; /* Mantiene la proporción del logo */
  display: inline-block;
  vertical-align: middle; /* Alineación vertical */
}

/* Navbar base */
nav.navbar {
    padding: 20px 30px; /* Más espacio para el grosor */   
    border-bottom: 2px solid #ddd; /* Línea separadora sutil */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra más pronunciada */
    background: linear-gradient(to bottom right,#f2f2f2 ,#ffcc80, #ff9800, #ff5722);
    max-height: 7rem;
    position: relative;
    z-index: 1000; 

}

/* Navbar links */
.navbar-light .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff5722; /* Cambia el color al hover */
    transform: scale(1.05); /* Efecto suave */
}

/* Ítem activo */
.navbar-light .navbar-nav .nav-link.active {
    color: #ff5722;
    font-weight: 700;
    border-bottom: 2px solid #ff5722; /* Indicador de activo */
}

/* Ajustes para escritorio */
@media (min-width: 992px) {
    .navbar-nav {
        text-align: center;
    }
    .navbar-nav .nav-item {
        margin: 0 15px;
    }
}

/* Ajustes para tablets y móviles */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 15px;
    }

    .navbar-brand {
        margin-bottom: 10px;
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 15px;
        padding: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin: 5px 0;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 10px;
        background: #f9f9f9;
        border-radius: 5px;
        margin: 2px 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link:hover {
        background: #ff5722;
        color: #fff;
        transform: scale(1.05);
    }
}

/* Optimización adicional para pantallas pequeñas */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 8px;
    }
}


 /* Estilos Base para el Footer */
.footer {
  background: linear-gradient(to bottom right, #ff9800, #ff5722);
  color: #f5f5f5; /* blanco crema en vez de blanco puro */
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  max-width: 250px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 0.5rem;
  text-align: center;
  color: #cf130d;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Título de cada sección del footer */
.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid white; /* línea blanca */
  padding-bottom: 10px;
  color: #fd3d02;
  transition: color 0.3s ease;
}

.footer-heading:hover {
  color: #c01c10;
}

/* Enlaces del menú principal - COLOR BLANCO SUAVE */
.footer-link {
  font-size: 1rem;
  font-weight: 500;
  color: #f5f5f5 !important; /* blanco crema */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffe0b2;
  text-decoration: underline;
}

/* Enlaces de políticas legales - COLOR NARANJA OSCURO */
.footer-dos {
  font-size: 1rem;
  font-weight: 500;
  color: #fd3d02 !important;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-dos:hover {
  color: #e14c00 !important;
  text-decoration: underline;
}

/* Íconos Sociales */
.footer-social-link {
  font-size: 2rem;
  color: #f5f5f5; /* blanco crema */
  transition: color 0.3s ease;
  margin-right: 15px;
}

.footer-social-link:hover {
  color: #ffe0b2;
}

/* Listas de enlaces */
.footer-links,
.legal-links {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links li,
.legal-links li {
  list-style: none;
  margin-bottom: 0.5rem;
}

/* Íconos Sociales (estructura) */
.social-links {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.social-links li {
  list-style: none;
  margin: 0 10px;
}

/* Copyright */
.footer-copyright {
  background-color: #212121;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 10px 0;
  text-align: center;
}

.footer-copyright p {
  margin-bottom: 0;
  color: #ddd; /* gris claro para copyright */
}

/* Responsividad */
@media (max-width: 768px) {
  .footer-logo {
    max-width: 180px;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-links,
  .legal-links,
  .social-links {
    text-align: center;
  }

  .footer-links li,
  .legal-links li {
    margin-bottom: 1rem;
  }

  .footer-heading {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    max-width: 130px;
  }

  .footer-description {
    font-size: 0.85rem;
  }

  .footer-heading {
    font-size: 1rem;
  }
}



  /*Icono whatsapp*/
  
  .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
  }
  
  .whatsapp-icon a {
    background-color: #f2f2f2; /* Fondo verde de WhatsApp */
    padding: 12px; /* Ajusta el padding para un buen espacio alrededor del ícono */
    border-radius: 50%; /* Asegura que el borde sea circular */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Sombra más suave */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* Tamaño fijo del icono */
    height: 60px;
    border: 4px solid #25d366; /* Borde blanco alrededor del ícono */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transición suave */
  }
  
  .whatsapp-icon a:hover {
    background-color: #f2f2f2; /* Color verde más oscuro al pasar el mouse */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Sombra más pronunciada al pasar el mouse */
    transform: translateY(-5px); /* Efecto de aumento al pasar el mouse */
  }
  
  .whatsapp-icon i {
    color: white; /* El ícono ahora será blanco */
    font-size: 28px; /* Aumento el tamaño del ícono para que se vea bien */
    transition: transform 0.3s ease; /* Transición para el ícono */
  }
  
  .whatsapp-icon a:hover i {
    transform: scale(1.1); /* Aumentar el tamaño del ícono al hacer hover */
  }
  

  /* Sección donde estará el video */
    .video-section {
      width: 100%;
      max-width: 1200px; /* Puedes ajustar el tamaño */
      margin: auto;
      padding: 20px;
      text-align: center;
    }

/* Contenedor del video */
.video-container {
  width: 100vw; /* Ocupar todo el ancho de la pantalla */
  max-width: 100%; /* Asegurar que no tenga límites de ancho */
  height: auto;
  position: relative;
  background: black;
  border-radius: 0; /* Sin bordes redondeados para pantalla completa */
  overflow: hidden;
}

/* Video responsivo */
.responsive-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0; /* Sin bordes redondeados */
}

    /* Quitar Picture-in-Picture */
    video::-webkit-media-controls-picture-in-picture-button {
      display: none;
    }
    
    video::-webkit-media-controls-fullscreen-button {
      display: none;
    }

    /* Controles personalizados */
    .controls {
      margin-top: 10px;
    }

    button {
      padding: 10px 15px;
      font-size: 16px;
      background: #007bff;
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 5px;
    }

    button:hover {
      background: #0056b3;
    }


    .unique-title-dos {
      font-size: 2.5rem !important;
      font-weight: bold !important;
      color: #f2f2f2 !important;
      margin-bottom: 20px !important;
      text-shadow: 2px 2px 5px rgba(34, 26, 26, 0.7) !important;
    }
    




