/* Reset and Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      }

      body {
        color: #333;
        background-color: #f9f9f9;
        line-height: 1.6;
        overflow-x: hidden;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      /* --- HEADER & NAVIGATION (DESKTOP) --- */
      header {
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        width: 100%;
        z-index: 1000;
        position: relative;
      }

      .header-container {
        display: flex;
        gap: 15px;
        justify-content: flex-start;
        align-items: center;
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        min-height: 90px;
      }

      /* Contenedor del teléfono a la derecha */
.header-phone-right {
    margin-left: 20px; /* Separación con el botón de Citas */
    padding-left: 20px;
    border-left: 1px solid #ddd; /* Línea separadora sutil a la izquierda */
    display: flex;
    align-items: center;
}

/* Estilo del enlace */
.header-phone-right a {
    text-decoration: none;
    color: #2c3e50; /* Tu azul oscuro */
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* Evita que el número se parta en dos líneas */
}

/* Efecto Hover */
.header-phone-right a:hover {
    color: #42b44d; /* Tu verde corporativo */
}

.header-phone-right i {
    color: #42b44d;
}

/* OCULTAR EN MÓVILES */
/* Importante: En pantallas pequeñas no cabe a la derecha, mejor ocultarlo */
@media (max-width: 1200px) {
    .header-phone-right {
        display: none;
    }
}

      .logo a {
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo-img {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        background-color: transparent;
        border-radius: 10px;
        padding: 0;
        box-shadow: none;
      }

      .logo-img img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 5px;
      }

      .logo-text {
        font-size: 30px;
        font-weight: bold;
        color: #2c3e50;
      }

      .logo-text span {
        color: #42b44d;
      }

      nav {
        margin-left: auto;
      }

      nav ul {
        display: flex;
        list-style: none;
        align-items: center;
        gap: 15px;
      }

      nav ul li {
        margin-left: 0;
        position: relative;
      }

      nav ul li a.nav-link {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.3s;
        padding: 8px 12px;
        border-radius: 4px;
        position: relative;
        display: block;
      }

      nav ul li a.nav-link:after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: #42b44d;
        left: 0;
        bottom: 0;
        transition: width 0.3s;
      }

      nav ul li a.nav-link:hover:after {
        width: 100%;
      }

      nav ul li a.nav-link:hover {
        color: #42b44d;
      }

      .btn-app {
        background-color: #42b44d;
        color: white !important;
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.9rem;
        box-shadow: 0 2px 5px rgba(66, 180, 77, 0.3);
      }

      .btn-app:hover {
        background-color: #369440;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(66, 180, 77, 0.4);
        color: white;
      }
      
      .btn-app:after {
        display: none !important;
      }

      .btn-app i {
        font-size: 1rem;
      }

      .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #2c3e50;
        margin-left: auto;
        padding: 10px;
        order: 2;
      }

      /* FLOATING BUTTONS */
      .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: 20px;
        background-color: #25d366;
        color: #fff;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
      }
      .whatsapp-float:hover { transform: scale(1.1); }

      .btn-float-download {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 90px;
        left: 20px;
        background-color: #42b44d;
        color: #fff;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 0 4px 10px rgba(66, 180, 77, 0.4);
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s, transform 0.3s;
      }
      .btn-float-download:hover { background-color: #369440; transform: scale(1.1); }

      /* HERO SECTION */
      .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        background-size: cover;
        background-position: center center;
        height: 100vh;
        display: flex;
        align-items: center;
        text-align: center;
        color: #fff;
        padding-top: 80px;
        position: relative;
        background-image: url("SLIDE.jpg");
        animation: slideshow 25s infinite;
      }
      @keyframes slideshow {
        0% { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("SLIDE.jpg"); }
        20% { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("SLIDE.jpg"); }
        25% { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("SLIDE1.jpg"); }
        45% { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("SLIDE1.jpg"); }
        50% { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("SLIDE2.jpg"); }
        70% { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("SLIDE2.jpg"); }
        75% { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("SLIDE3.jpg"); }
        95% { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("SLIDE3.jpg"); }
        95.01% { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("SLIDE4.jpg"); }
        100% { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("SLIDE4.jpg"); }
      }
      
      .hero-content {
        max-width: 850px;
        margin: 0 auto;
        padding: 0 20px;
        animation: fadeIn 1.5s ease-in-out;
      }
      .hero h1 {
        font-size: 3.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
      }
      .hero p {
        font-size: 1.1rem;
        margin-bottom: 40px;
        font-weight: 300;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
      }
      .btn {
        display: inline-block;
        background: #42b44d;
        color: #fff;
        padding: 16px 42px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: bold;
        transition: all 0.3s;
        font-size: 1.1rem;
        border: 2px solid #42b44d;
        margin: 0 12px;
        box-shadow: 0 4px 12px rgba(66, 180, 77, 0.4);
      }
      .btn:hover {
        background: transparent;
        color: #42b44d;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }
      /* Botón blanco para la oferta */
      .btn-white {
        background: #fff;
        color: #42b44d;
        border: 2px solid #fff;
      }
      .btn-white:hover {
        background: transparent;
        color: #fff;
        border: 2px solid #fff;
      }
      
      section { padding: 80px 0; }
      .section-title { text-align: center; margin-bottom: 50px; }
      .section-title h2 { font-size: 2.1rem; color: #2c3e50; margin-bottom: 15px; position: relative; display: inline-block; }
      .section-title h2:after { content: ""; position: absolute; width: 60%; height: 4px; background: linear-gradient(to right, #42b44d, #94aa67); bottom: -15px; left: 20%; border-radius: 2px; }
      .section-title p { font-size: 1rem; color: #7f8c8d; max-width: 700px; margin: 30px auto 0; }
      
      /* FEATURES & GRID */
      .features-grid-custom { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; justify-items: center; }
      @media (min-width: 993px) {
        .features-grid-custom { grid-template-columns: repeat(3, 1fr); }
        .features-grid-custom .director-comercial { grid-column: 1 / -1; width: 350px; max-width: 100%; }
      }
      @media (max-width: 992px) {
        .features-grid-custom .director-comercial { grid-column: auto; width: 100%; }
      }

      .feature-card {
        background: #f8fafc;
        padding: 35px 30px;
        border-radius: 12px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border-top: 5px solid #94aa67;
      }
      .feature-card:hover { transform: translateY(-12px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12); }
      .feature-logo { width: 120px; height: 120px; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; }
      .feature-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
      .feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #2c3e50; }
      .feature-card p { color: #7f8c8d; line-height: 1.7; }
      
      .about-company { background: #fff; }
      .about-content { display: flex; align-items: center; flex-wrap: wrap; }
      .about-text { flex: 1; min-width: 300px; padding-right: 30px; }
      .about-image { flex: 1; min-width: 300px; }
      .about-image img { width: 100%; border-radius: 10px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); transition: transform 0.3s; }
      
      .section-title p.small-text {
        font-size: 1rem;      /* Reduce el tamaño (1rem suele ser 16px, esto es aprox 14px) */
        line-height: 1.5;       /* Ajusta el espacio entre líneas para que no se vea separado */
        max-width: 800px;       /* Opcional: evita que la línea sea eterna y difícil de leer */
        margin-left: auto;      /* Centra el bloque de texto */
        margin-right: auto;     /* Centra el bloque de texto */
        color: #666;            /* Opcional: Un gris un poco más suave queda mejor en letra pequeña */
    }
      .apartments { background-color: #f8fafc; }
      .apartments-grid { display: flex; overflow-x: auto; padding-bottom: 20px; flex-wrap: nowrap; gap: 30px; }
      .apartments-grid::-webkit-scrollbar { height: 10px; }
      .apartments-grid::-webkit-scrollbar-thumb { background-color: #42b44d; border-radius: 10px; }
      .apartments-grid::-webkit-scrollbar-track { background-color: #ddd; border-radius: 10px; }
      
      .apartment-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); transition: transform 0.3s, box-shadow 0.3s; border-top: 5px solid #42b44d; min-width: 300px; width: 350px; white-space: normal; flex-shrink: 0; }
      .apartment-card:hover { transform: translateY(-12px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12); }
      .apartment-image { height: 200px; overflow: hidden; position: relative; }
      .apartment-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
      .apartment-card:hover .apartment-image img { transform: scale(1.1); }
      /* Icono de zoom para lightbox */
      .zoom-icon { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.8); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #333; pointer-events: none; opacity: 0; transition: opacity 0.3s; }
      .apartment-card:hover .zoom-icon { opacity: 1; }
      
      .apartment-details { padding: 25px; }
      .apartment-details h3 { font-size: 1.4rem; margin-bottom: 10px; color: #2c3e50; }
      .apartment-details p { color: #7f8c8d; margin-bottom: 8px; font-size: 0.85rem; }
      .apartment-details .surface { font-weight: bold; color: #42b44d; border-top: 1px solid #eee; padding-top: 10px; margin-top: 10px; }
      
      .plans { background-color: #fff; }
      .plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
      #plans .plans-grid { grid-template-columns: repeat(2, 1fr); justify-content: center; }
      
      .plan-card { background: #f8fafc; padding: 20px; border-radius: 12px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); }
      .plan-card:hover { transform: translateY(-12px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12); }
      .plan-card img { width: 100%; height: auto; border-radius: 8px; border: 2px solid #ddd; transition: transform 0.3s; }
      .plan-card img:hover { transform: scale(1.02); }
      .plan-card h3 { margin-top: 20px; font-size: 1.3rem; color: #2c3e50; }

      /* --- ESTILOS PARA LA CAJA DE RESERVA --- */
        .reservation-box {
            margin-top: 30px; /* Separación con la tabla */
            text-align: center;
            background-color: #e8f5e9; /* Un verde muy pálido, elegante */
            border: 1px solid #c8e6c9; /* Borde verde suave */
            border-radius: 12px;
            padding: 30px 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .reservation-text {
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 25px;
            font-weight: 500;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .reservation-btn {
            background-color: #42b44d; /* Tu verde corporativo */
            color: #fff !important;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(66, 180, 77, 0.4);
        }

        .reservation-btn:hover {
            background-color: #369440;
            transform: translateY(-3px); /* Se eleva un poco al pasar el ratón */
            box-shadow: 0 8px 20px rgba(66, 180, 77, 0.6);
        }
    
    /* --- Colores de estado --- */

    /* Clase para cuando está DISPONIBLE (Verde corporativo) */
    .status-free {
        color: #42b44d; 
        font-weight: 700;
    }

    /* Clase para cuando está RESERVADA o NO DISPONIBLE (Rojo) */
    .status-busy {
        color: #dc3545; /* Un rojo estándar de alerta */
        font-weight: 700;
    }
      
      .architect-video, #project-video { background-color: #f8fafc; }
      .video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; background: #000; border-radius: 12px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); margin-top: 40px; }
      .video-container iframe, .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
      
      .memoria-calidades { background-color: #f8fafc; }
      .calidades-text { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); margin-top: 40px; font-size: 1.1rem; color: #444; }
      .calidades-text h3 { font-size: 1.5rem; color: #2c3e50; margin-top: 30px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #e0e0e0; display: flex; align-items: center; }
      .calidades-text h3 i { margin-right: 15px; color: #42b44d; font-size: 1.3em; }
      .calidades-text .accordion-toggle { cursor: pointer; user-select: none; transition: background-color 0.3s; padding: 15px; }
      .calidades-text .accordion-toggle:hover { background-color: #f5f5f5; }
      .calidades-text .accordion-toggle::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; float: right; color: #42b44d; }
      .calidades-text .accordion-toggle.active::after { content: "\f077"; }
      .calidades-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease-out; }
      .calidades-content.show { max-height: 1000px; padding: 15px; }
      @media (min-width: 768px) { .calidades-text .content-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; } }
      
      .location { background-color: #f8fafc; }
      .map-flex-container { width: 100%; display: flex; flex-direction: column; }
      @media (min-width: 768px) { .map-flex-container { flex-direction: row; } }
      .map-flex-item { width: 100%; height: 500px; background: #eee; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); }
      .location-images-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
      .location-images-grid img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); transition: transform 0.3s; }
      .location-images-grid img:hover { transform: scale(1.02); }

      /* Estilo para la lista de ubicación */
        .location-list {
            text-align: left;           /* Alinea el texto a la izquierda para leer mejor */
            display: inline-block;      /* Mantiene el bloque centrado en la pantalla */
            margin: 20px auto;          /* Espacio arriba/abajo */
            list-style-type: none;      /* Quitamos los puntos negros feos por defecto */
            max-width: 600px;           /* Evita que se estire demasiado */
        }

        .location-list li {
            margin-bottom: 10px;        /* Espacio entre cada punto */
            position: relative;
            padding-left: 25px;         /* Espacio para nuestro propio punto verde */
            font-size: 1.1rem;          /* Tamaño de letra legible */
            color: #555;
        }

        /* Crear puntos personalizados verdes */
        .location-list li::before {
            content: "•";               /* El símbolo del punto */
            color: #42b44d;             /* TU VERDE CORPORATIVO */
            font-weight: bold;
            font-size: 1.5em;           /* Punto un poco más grande */
            position: absolute;
            left: 0;
            top: -5px;                  /* Ajuste fino de altura */
        }
      
      .contact { padding-bottom: 40px; }
      .contact-content { display: flex; flex-wrap: wrap; justify-content: center; }
      .contact-info { text-align: center; }
      
      /* ESTILOS NUEVA SECCIÓN OFERTA */
      #exclusive-offer { background-color: #42b44d; color: #fff; text-align: center; padding: 50px 0; margin-top: -40px; }
      #exclusive-offer h3 { font-size: 2.2rem; margin-bottom: 15px; font-weight: 700; }
      #exclusive-offer p { font-size: 1.4rem; margin-bottom: 30px; }
      
      .offer-content { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
      .qr-wrapper { display: none; margin-top: 10px; text-align: center; }
      .qr-wrapper img { width: 120px; border: 4px solid #fff; border-radius: 5px; }
      .qr-wrapper span { display: block; font-size: 0.8rem; margin-top: 5px; opacity: 0.8; }

      footer { background: #2c3e50; color: #fff; padding: 40px 0 20px; }
      .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; }
      .footer-section { flex: 1; min-width: 300px; margin-bottom: 30px; padding-right: 20px; }
      .footer-section h3 { font-size: 20px; margin-bottom: 20px; border-bottom: 2px solid #42b44d; padding-bottom: 10px; display: inline-block; }
      .footer-section ul { list-style: none; }
      .footer-section ul li a { color: #ecf0f1; text-decoration: none; }
      .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
      
      @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

      /* LIGHTBOX STYLES */
      .lightbox-modal {
        display: none; 
        position: fixed; 
        z-index: 9999; 
        left: 0; top: 0; 
        width: 100%; height: 100%; 
        background-color: rgba(0,0,0,0.9); 
        justify-content: center; 
        align-items: center;
        padding: 20px;
      }
      .lightbox-content {
        max-width: 95%;
        max-height: 95%;
        border-radius: 5px;
        box-shadow: 0 0 20px rgba(255,255,255,0.2);
        animation: zoomIn 0.3s ease;
      }
      .close-btn {
        position: absolute;
        top: 20px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
        cursor: pointer;
      }
      .close-btn:hover { color: #42b44d; text-decoration: none; cursor: pointer; }
      @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }

      /* MEDIA QUERIES MENÚ */
      @media (max-width: 992px) {
        .header-container { justify-content: space-between; min-height: 80px; }
        .menu-toggle { display: block !important; margin-left: auto; }
        nav { display: block; position: absolute; top: 80px; left: 0; width: 100%; background-color: #fff; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; margin-left: 0; z-index: 990; }
        nav.open { max-height: 600px; }
        nav ul { flex-direction: column; padding: 15px 0; gap: 10px; }
        nav ul li { width: 100%; text-align: center; }
        .btn-app { width: 80%; margin: 5px auto; justify-content: center; }
      }
      @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .plans-grid { grid-template-columns: 1fr; }
      }

      /* --- INTEGRACIÓN CON TU ESTILO --- */
    
    /* Sección contenedora con tus márgenes estándar */
    .availability-section {
        padding: 60px 0;
        background-color: #f9f9f9; /* Tu color de fondo base */
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .availability-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Estilo del Título idéntico a tu CSS (.section-title) */
    .custom-section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    .custom-section-title h2 {
        font-size: 2.5rem;
        color: #2c3e50; /* Tu azul oscuro */
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        font-weight: bold;
    }
    .custom-section-title h2:after {
        content: "";
        position: absolute;
        width: 60%;
        height: 4px;
        background: linear-gradient(to right, #42b44d, #94aa67); /* Tu degradado verde */
        bottom: -10px;
        left: 20%;
        border-radius: 2px;
    }

    /* Estilo de "Tarjeta" para la tabla (Basado en .feature-card y .apartment-card) */
    .table-card {
        background: #fff;
        border-radius: 12px;
        padding: 0; /* El padding lo manejan las celdas */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Tu sombra suave */
        border-top: 5px solid #42b44d; /* Tu borde superior verde característico */
        overflow: hidden; /* Para respetar los bordes redondeados */
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .table-card:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12); /* Efecto hover sutil */
    }

    /* Tabla */
    .styled-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 1rem;
        color: #333;
        min-width: 600px; /* Asegura que no se rompa en móviles muy pequeños */
    }

    /* Cabecera de la tabla */
    .styled-table thead tr {
        background-color: #2c3e50; /* Cabecera oscura para contraste */
        color: #ffffff;
        text-align: left;
    }

    .styled-table th, 
    .styled-table td {
        padding: 18px 25px;
    }

    .styled-table th {
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    /* Filas y Zebra Striping */
    .styled-table tbody tr {
        border-bottom: 1px solid #eeeeee;
        transition: background-color 0.2s;
    }

    .styled-table tbody tr:nth-of-type(even) {
        background-color: #f8fafc; /* Tu color de fondo alternativo suave */
    }

    .styled-table tbody tr:last-of-type {
        border-bottom: none; /* Quitar borde al final */
    }

    .styled-table tbody tr:hover {
        background-color: #f1f8f2; /* Un verde muy muy suave al pasar el ratón */
    }

    /* Tipografía específica de columnas */
    .col-vivienda { font-weight: bold; color: #2c3e50; }
    

    /* Botón de descarga (Basado en .btn-app) */
    .download-btn-style {
        background-color: #42b44d;
        color: white !important;
        padding: 8px 20px;
        border-radius: 50px; /* Tu estilo de botones redondos */
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        font-size: 0.85rem;
        box-shadow: 0 2px 5px rgba(66, 180, 77, 0.3);
    }

    .download-btn-style:hover {
        background-color: #369440;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(66, 180, 77, 0.4);
    }
    
    .download-btn-style i {
        margin-right: 5px;
    }

    /* Scroll horizontal para móviles */
    .table-responsive {
        overflow-x: auto;
        border-radius: 0 0 12px 12px;
    }
    
    /* Scrollbar personalizada como en tu CSS */
    .table-responsive::-webkit-scrollbar { height: 8px; }
    .table-responsive::-webkit-scrollbar-thumb { background-color: #42b44d; border-radius: 10px; }
    .table-responsive::-webkit-scrollbar-track { background-color: #ddd; border-radius: 10px; }
