 /* Estilos generales */
 body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  /* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem 0rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
    margin: 0 auto;
}

.nav-item {
    color: #fff;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #f39c12;
}
/* Logo */
.logo img {
    height: 50px;
    width: auto;
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.navbar-toggler-icon {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon:nth-child(2) {
    margin: 5px 0;
}

/* Estilo de los enlaces */
.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #f39c12;
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
       
        width: 100px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .navbar-toggler {
        display: flex;
    }
}

/* Estilo adicional para pantallas muy pequeñas (menos de 480px) */
@media (max-width: 480px) {
    .nav-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .logo img {
        height: 50px; /* Logo más pequeño */
    }

    .navbar-toggler {
        align-self: flex-end;
    }

    .nav-links {
        width: 100%; /* Ocupa todo el ancho */
        top: 85px;
        right: 0;
        padding: 1rem;
        text-indent: 12px;
    }

    .nav-item {
        font-size: 14px; /* Tamaño de fuente más pequeño */
    }
}

    .whatsapp {
      position:fixed;
      width:60px;
      height:60px;
      bottom:40px;
      left:40px;
      background-color:#25d366;
      color:#FFF;
      border-radius:50px;
      text-align:center;
      font-size:30px;
      z-index:100;
    }
    
    .whatsapp-icon {
      margin-top:13px;
    }

  /* Estilo para el header */
  header {
    height: 65vh;
    background-image: url('/CONDOSBYAREA/condos/imgcondos/Key-Biscayne-Florida-2.jpg.webp'); /* Imagen de fondo */    
    background-size: cover; /* Hace que la imagen cubra todo el header */
    background-position: center; /* Centra la imagen */
    color: #d2a67a;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  /* Efecto de superposición para mejorar la legibilidad */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(66, 66, 66, 0.349); /* Fondo oscuro semi-transparente */
}

  header h1 {
    font-size: 4rem;
    margin: 0;
    z-index: 2;
    text-shadow: 4px 0px 2px #181717;
  }
  
  /* Contenedores debajo del header */
  .container1 {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .box1 {
    display: flex;
    justify-content: flex-start;
    background-color: black;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Espacio entre los boxes */
    height: 5vh;
    text-align:center ;
   
  }

  /* Contenedores debajo del header */
  .container {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    grid-gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .box {
    display: flex;
    justify-content: flex-start;
    background-color: black;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Espacio entre los boxes */
    height: 30vh;
  }

  /* Ajusta el ancho de la parte izquierda */
  .left {
    width: 100%; /* Reduzco el tamaño del carrusel */
    background-color: #444;
    padding: 5px;
  }

  .right {
    width: 100%; /* El lado derecho ocupa el 97% */
    background-color: #555;
    height: 35%;
  }
  .right h2{
      color: #cead8c;
      font-size: 27px;
      padding: 4px;
  }
  
  .right ul {
  list-style-type: none; /* Quita las viñetas predeterminadas */
  padding-left: 0; /* Elimina el padding izquierdo predeterminado */
  margin-top:-19px; /* Elimina los márgenes predeterminados */
  text-indent: 10px;
}

.right li {
  position: relative; /* Para posicionar el punto a la derecha */
  padding-right: 15px; /* Espacio para el punto a la derecha */
  margin-bottom: 5px; /* Espacio entre elementos de la lista */
  text-align: left; /* Alinea el texto a la derecha para mantener consistencia */
}

.right li::after {
  content: ""; /* El punto/viñeta */
  position: absolute;
  right: 0; /* Coloca el punto a la derecha */
  top: 0; /* Alinea con la parte superior del texto */
}

  /* Estilo del carrusel */
  .carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  .carousel-images {
    display: flex;
    transition: transform 0.5s ease;
  }

  .carousel-images img {
    width: 100%;
    height: 35vh;
    object-fit: cover;
  }

  .carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }

  .carousel-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
  }


 

  



      /*======================
	ANIMATION SVG SECTION
    ========================*/

svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: block;
    background-color: #6d676709;
    background-image: linear-gradient(to bottom, rgb(63, 60, 60), #000000);
    z-index: -7;
  }
  /*==================
      END ANIMATION SVG SECTION
  ====================*/


/* Footer General */
.footer-container {
    background-color: #1616169d;
    color: #fff;
    padding: 0rem 1rem;
    font-size: 0.9rem;
    display: block;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

/* Footer Columnas */
.footer-col {
    flex: 1;
    min-width: 250px;
    
   
}
.mantente{
    font-size: 15px;
    color: #b19273;
    padding: 5px;
    margin: 2px;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
}

.footer-logo {
    max-width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    padding: 0px 50px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-description {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #bbb;
    font-size: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 1rem;
    color: #aaa;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    justify-content: center;
    align-items: center;
    padding: 1px 23px;
}

.social-icons a:hover {
    color: #fff;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 50%;
}

.newsletter-input {
    padding: 0.5rem;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #1c1c1c;
    color: #fff;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #cead8c;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color:#cead8c;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #aaa;
}

.footer-bottom a {
    color: #0078d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #005bb5;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #cead8c;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 9;
}

.back-to-top:hover {
    background-color: #b19273;
}

/* Responsividad */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
    }
}


/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo del H1 */
.name {
    font-size: 3rem; /* Tamaño grande del texto */
    font-weight: bold;
    font-family: 'Roboto', sans-serif; /* Cambia la fuente a algo moderno */
    color: #fff; /* Color principal */
    text-transform: uppercase; /* Convierte el texto a mayúsculas */
    position: relative; /* Necesario para la animación */
    display: inline-block; /* Para que el texto y el ícono estén juntos */
}
  /* Icono */
.name i {
    font-size: 1.5em; /* Tamaño relativo del icono */
    color: #fff; /* Color del ícono */
    margin-left: 0.5rem;
    transition: transform 0.5s ease, color 0.3s ease;
}

/* Efectos de animación */
.name::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: -10px;
    left: 0;
    background-color: #d2a67a;
    transition: width 0.5s ease-in-out;
}
.name:hover::after {
    width: 100%; /* Línea animada debajo del texto */
}
  
.name:hover i {
    transform: rotate(360deg); /* Rotación del ícono */
    color: #d2a67a; /* Cambia el color del ícono al pasar el mouse */
}
  
  /* Animación de entrada */
.name {
    animation: fadeIn 2s ease-out;
}


/* Media Queries */

/* Pantallas grandes (escritorio) */
@media screen and (min-width: 1200px) {
  .container, .container1 {
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .box {
    height: 57vh;
    width: 51vh;
  }
  
  .box1 {
    height: 5vh;
  }
}

/* Pantallas medianas (tablets y laptops pequeñas) */
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .container, .container1 {
    padding: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .box {
    height: auto;
  }
  
  .box1 {
    height: 4vh;
    padding: 15px;
  }
  
  .carousel-buttons button {
    font-size: 20px;
    padding: 8px;
  }
}

/* Tablets y móviles grandes en modo landscape */
@media screen and (max-width: 767px) and (min-width: 576px) {
  .container, .container1 {
    padding: 10px;
  }
  
  .box {
    height: 40vh;
    flex-direction: column;
  }
  
  .box1 {
    height: auto;
    min-height: 40px;
    padding: 12px;
  }
  
  .left, .right {
    width: 100%;
    padding: 8px;
  }
  
  .right {
    margin-top: 10px;
  }
  
  .right ul {
    text-align: center;
  }
  
  .right li {
    text-align: center;
    padding-right: 0;
    padding-bottom: 15px;
  }
  
  .right li::after {
    content: "";
    display: none;
  }
  
  .carousel-buttons button {
    font-size: 18px;
    padding: 6px;
  }
}

/* Móviles */
@media screen and (max-width: 575px) {
  .container, .container1 {
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
  }
  
  .box {
    height: auto;
    
    flex-direction: column;
    padding: 15px;
  }
  
  .box1 {
    height: auto;
    min-height: 35px;
    padding: 10px;
    font-size: 14px;
  }
  
  .left, .right {
    width: 100%;
    padding: 0px;
  }
  
 
  
  .right {
    margin-top: 10px;
    text-align: center;
  }
  
  .right ul {
    text-align: center;
  }
  
  .right li {
    text-align: center;
    padding-right: 0;
    padding-bottom: 15px;
  }
  
  .right li::after {
    content: "";
    display: none;
  }
  
  .carousel-buttons {
    bottom: 10px;
    top: auto;
  }
  
  .carousel-buttons button {
    font-size: 16px;
    padding: 5px;
    margin-top: 133px;
  }
}

/* Para dispositivos muy pequeños */
@media screen and (max-width: 375px) {
  .box {
   
    padding: 10px;
  }
  
  .box1 {
    min-height: 30px;
    padding: 8px;
    font-size: 12px;
  }
  
  
  
  .carousel-buttons button {
    font-size: 14px;
    padding: 4px;
  }
}

/* Para dispositivos con orientación landscape (horizontal) */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .box {
    height: auto;
    min-height: 150px;
    flex-direction: row;
  }
  
  .box1 {
    height: auto;
    min-height: 30px;
  }
  
  .left {
    width: 40%;
    height: 20vh;
  }
  
  .right {
    width: 60%;
    margin-top: 0;
  }
}

