.navbar-toggler-icon {
    filter: invert(1);
}
.offcanvas-end {
    width: 70vw;
  }
 .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

/* Hover suave */
.custom-menu .nav-link {
  transition: background-color 0.2s ease;
}

.custom-menu .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05); /* color apenas oscuro */
  border-radius: 4px;
}

/* Línea divisoria sutil */
.custom-menu hr {
  border-color: rgba(0, 0, 0, 0.1);
}

.btn-dark {
    --bs-btn-color: #ffffff;
    background: linear-gradient(90deg, #1b1b1b 0%, #4b1f8c 100%) !important;
        --bs-btn-hover-color: #ffffff;
    }   

.text-primary{
    color: rgb(2 2 2) !important;
}
    .header-background {
    background-image: url('./img/bg.webp'); /* Cambia la URL por la de tu imagen */
    background-size: cover; /* Asegura que la imagen cubra todo el área */
    background-position: center; /* Centra la imagen */
    height: 260px; /* Ajusta la altura según sea necesario */
    width: 100%; /* Asegura que el encabezado ocupe todo el ancho */
    }
.accordion-button:not(.collapsed) {
    color: #ffffff; 
    background: linear-gradient(90deg, #1b1b1b 0%, #4b1f8c 100%);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
       
     

    body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: var(--light-gray-bg);
    }
    /* Header image as a rectangle block with placeholder */
    header {
      background-color: var(--soft-beige);
  /*  height: 140px;*/
    }
 header img { 
    margin-left: 16px;
    margin-top: 10px;
    border-radius: 4px;
}
    /* Navbar */
    nav .nav-link {
      color: var(--dark-gray);
      font-weight: 500;
      cursor: pointer;
      transition: color 0.3s ease;
    }
    nav .nav-link:hover {
      color: var(--primary-orange);
    }
    .btn-contact-header {
      background-color: #000;
      border: none;
      border-radius: 0.5rem;
      padding: 0.45rem 1.3rem;
      font-weight: 600;
      color: white;
      transition: background-color 0.3s ease;
    }
    .btn-contact-header:hover {
      background-color: #e15000;
      color: white;
    }
    /* Section below header: big beige area with two buttons*/
    .header-banner {
      background-color: var(--soft-beige);
      height: 260px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
    }
    .header-banner .btn-contactar {
      background-color: #000000;
      border: none;
      border-radius: 0.5rem;
      padding: 0.5rem 1.4rem;
      font-weight: 600;
      color: white;
      transition: background-color 0.3s ease;
    }
    .header-banner .btn-contactar:hover {
      background-color: #e15000;
      color: white;
    }
    .header-banner .btn-recorrido {
      background-color: #ffffff;
      border: none;
      border-radius: 0.5rem;
      padding: 0.5rem 1.4rem;
      color: #000000;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }
    .header-banner .btn-recorrido:hover {
      background-color: #111111;
      color: white;
    }
    /* Info cards row */
    .info-cards {
      padding: 2rem 1rem;
      background: white;
      max-width: 1200px;
      margin: 0 auto 2rem auto;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .info-card {
      background: white;
      box-shadow: 0 4px 14px rgb(0 0 0 / 0.05);
      border-radius: 0.5rem;
      flex: 1 1 16rem;
      padding: 1.25rem 1rem 1.5rem 1rem;
      position: relative;
      min-width: 220px;
      max-width: 280px;
      text-align: center;
    }
    .info-card .icon-circle {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      border-radius: 50%;
      padding: 0.4rem 0.5rem;
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
      font-size: 1.4rem;
      color: #000000;
    }
    .info-card strong {
      display: block;
      font-weight: 700;
      margin: 0.35rem 0;
      font-size: 1rem;
      color: var(--dark-gray);
    }
    .info-card p {
      font-size: 0.85rem;
      color: #444;
      line-height: 1.2;
      margin: 0;
      padding: 0 0.3rem;
    }
    
    /* Map and contact section container */
    .map-contact-container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    /* Map box */
    .map-box {
      flex: 1 1 60%;
      min-width: 280px;
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: 0 0 12px rgb(0 0 0 / 0.07);
      border: 1px solid #ddd;
    }
    /* Placeholder for map - can replace with iframe/map embed */
    .map-placeholder {
      width: 100%;
      height: 220px;
      background-color: #d9dedb;
      background-image: url('./img/bg.webp');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
    /* Contact box on right */
    .contact-box {
      flex: 1 1 35%;
      min-width: 280px;
      background: white;
      border-radius: 0.45rem;
      box-shadow: 0 4px 16px rgb(0 0 0 / 0.1);
      padding: 1rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      font-size: 0.85rem;
      color: #3b3b3b;
    }
    .contact-box p {
      white-space: pre-line;
      font-weight: 500;
      line-height: 1.3;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }
    .contact-box .btn-contact {
      background-color:#000000;
      color: white;
      font-weight: 600;
      border-radius: 0.5rem;
      border: none;
      padding: 0.5rem 0;
      transition: background-color 0.3s ease;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }
    .contact-box .btn-contact:hover {
      background-color: #e15000;
      color: white;
    }
    .contact-box .btn-whatsapp {
      background-color: #25d366;
      color: white;
      font-weight: 600;
      border-radius: 0.5rem;
      border: none;
      padding: 0.5rem 0;
      transition: background-color 0.3s ease;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }
    .contact-box .btn-whatsapp:hover {
      background-color: #1ebe57;
      color: white;
    }
    /* Icon row with details under map/contact */
    .details-icons-row {
      max-width: 1200px;
      margin: 1rem auto 3rem auto;
      padding: 0 1rem;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.85rem;
      color: #444;
      flex-wrap: wrap;
    }
    .details-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      min-width: 75px;
      user-select: none;
    }
    .details-icon i {
      font-size: 1.5rem;
      color: #000000;
    }
    .details-icon span {
      font-weight: 600;
    }
     
    /* Footer */
   footer { 
    background: linear-gradient(90deg, #1b1b1b 0%, #4b1f8c 100%);
    color: white;
    font-size: 0.8rem;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

    footer .footer-logo {
      background-color: #ffffff;      
      height: 40px;
      border-radius: 6px;
    }

    footer .footer-links a {
      color: white;
      text-decoration: none;
      margin-left: 0.6rem;
      user-select: none;
    }

    footer .footer-links a:hover {
      text-decoration: underline;
    }
    
    /* Responsive tweaks */
    @media (max-width: 991px) {
      .photos-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
      }
      .photo-big {
        grid-row: span 1;
      }
      .map-contact-container {
        flex-direction: column;
      }
      .map-box,
      .contact-box {
        flex: 1 1 100%;
      }
      .details-icons-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 1rem;
      }
      .agent-contact {
        margin-top: 1rem;
        justify-content: center;
      }
      footer {
        flex-direction: column;
        gap: 0.3rem;
      }
    }
    @media (max-width: 575px) {
      nav .nav-link {
        font-size: 0.9rem;
      }
      .property-tabs {
        gap: 0.3rem;
      }
      .property-tabs button {
        font-size: 0.8rem;
      }
    }

    a {
    color: rgb(255 255 255);
    text-decoration: none;
}

.video-placeholder {
    width: 100%;
    height: 280px;
    background: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}
 