
        /* Reset and base styles */

.project-card2 {
    position: relative;
    overflow: hidden;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: auto;
    
    width: 60%;
}
     
.project-card2::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 300%;
    background: linear-gradient(
        45deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


.project-card2:hover::before {
    animation: smoothFastShineForward 0.8s ease-out forwards;
}

.project-card2:not(:hover)::before {
    animation: smoothFastShineBackward 0.8s ease-out forwards;
}

 
.projects-grid2 {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
} 
 
.projects-grid3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    height: 200px;
} 
 
  
/* --- Animaciones para Proyectos Destacados --- */
.projects-grid2 {
    position: relative;
} 
 


/* Esquinero superior izquierdo */
.projects-grid2::before,
.projects-grid2::after {
    content: '';
    position: absolute;
    background-color: var(--accent-color);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

/* Línea horizontal arriba */
.projects-grid2::before {
    top: -20px;
    left: -20px;
    width: 40px;
    height: 8px;
}

/* Línea vertical izquierda */
.projects-grid2::after {
    top: -20px;
    left: -20px;
    width: 8px;
    height: 40px;
}

/* Esquinero inferior derecho */
.projects-grid2 .corner {
    position: absolute;
    background-color: var(--accent-color);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

/* Línea horizontal abajo */
.projects-grid2 .corner.bottom {
    bottom: -20px;
    right: -20px;
    width: 40px;
    height: 8px;
}

/* Línea vertical derecha */
.projects-grid2 .corner.right {
    bottom: -20px;
    right: -20px;
    width: 8px;
    height: 40px;
}

/* Activación con scroll */
.projects-grid2.active::before,
.projects-grid2.active::after,
.projects-grid2.active .corner {
    opacity: 1;
    transform: translateX(0);
}



.card-project {
  border: 1px solid #27a5a4;
  display: inline-block;
  background-color: #f7ede2; /* color aproximado */
  font-family: Arial, sans-serif;
  color: #27a5a4;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
 
}

.card-item-project {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid #27a5a4;
  font-size: 16px;
  justify-content: center;
}

.card-item-project:last-child {
  border-bottom: none;
}

.icon-project {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.currency {
  font-weight: bold;
  margin-right: 5px;
}















 
@media (max-width: 768px) {
    
  .project-card2 {
        
        height: auto;
          position: relative;
    overflow: hidden;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: auto;
    
    width: 100%;
    }
    
   
    
    .projects-grid2 {
    display: block;
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  
    margin-bottom: 40px;
    position: relative;
} 

  .projects-grid3 {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  
    margin-bottom: 40px;
    position: relative;
} 


      .proyectos-map-btn {
            display: flex;
            width: 90%;
            background-color: white;
            
            color: #012D5A;
            padding: 12px 30px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            justify-content: center;
        }


}

        /* About Section */
        .proyectos-about {
           width: 400px;
            background-color: #012D5A;
            color: white;
            height: 500px;
        }

        .proyectos-about-content {
            display: flex;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            width: 400px;
            margin: auto;
            padding: 50px;
            align-items: center;
        }

        .proyectos-about-text h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 30px;
            padding: 10px;
        }

        .proyectos-about-text p {
            margin-bottom: 20px;
            color: white;
            line-height: 1.8;
            padding: 20px;
        }

        .proyectos-about-image {
            text-align: center;
        }

        .proyectos-about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Location Section */
        .proyectos-location {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .proyectos-location-content {
            text-align: center;
        }

        .proyectos-location-content h2 {
            font-size: 2.5rem;
            color: #012D5A;
            margin-bottom: 20px;
        }

        .proyectos-location-content p {
            margin-bottom: 40px;
            color: #555;
            font-size: 1.2rem;
        }

        .proyectos-location-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            text-align: left;
            margin-bottom: 50px;
        }

        .proyectos-address {
            font-size: 1.3rem;
            color: #012D5A;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .proyectos-amenities {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .proyectos-amenity {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .proyectos-amenity i {
            font-size: 1.5rem;
            color: #012D5A;
        }

        .proyectos-map-btn {
            display: flex;
           
            background-color: white;
            width: 350px;
            color: #012D5A;
            padding: 12px 30px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            justify-content: center;
            text-align: center;
        }

        .proyectos-map-btn:hover {
            background-color: #0255a1;
        }

        /* Sizes Section */
        .proyectos-sizes {
            padding: 100px 0;
            background-color: #fff;
        }

        .proyectos-sizes-content {
            text-align: center;
        }

        .proyectos-sizes-content h2 {
            font-size: 2.5rem;
            color: #012D5A;
            margin-bottom: 60px;
        }

        .proyectos-size-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .proyectos-size-option {
            background-color: #f8f9fa;
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
        }

        .proyectos-size-option:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .proyectos-size-name {
            font-size: 1.8rem;
            color: #012D5A;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .proyectos-size-dimension {
            font-size: 2.5rem;
            color: #012D5A;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .proyectos-size-details {
            color: #555;
            margin-bottom: 20px;
        }

        /* Apartment Section */
        .proyectos-apartment {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .proyectos-apartment-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .proyectos-apartment-info h2 {
            font-size: 2.5rem;
            color: #012D5A;
            margin-bottom: 30px;
        }

        .proyectos-apartment-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .proyectos-detail-item {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .proyectos-detail-value {
            font-size: 1.8rem;
            color: #012D5A;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .proyectos-detail-label {
            color: #555;
            font-size: 0.9rem;
        }

        .proyectos-apartment-image {
            text-align: center;
        }

        .proyectos-apartment-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

 

   
     
      

        /* Back to top button */
        .proyectos-back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #012D5A;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: all 0.3s;
            z-index: 999;
        }

        .proyectos-back-to-top.visible {
            opacity: 1;
        }

        /* Responsive Design */
        @media screen and (max-width: 992px) {
            .proyectos-about-content,
            .proyectos-location-details,
            .proyectos-apartment-content {
                grid-template-columns: 1fr;
            }
            
            .proyectos-size-options {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .proyectos-about {
           display: none;
        }
        }

        @media screen and (max-width: 768px) {
            
            
           
            
            .proyectos-size-options {
                grid-template-columns: 1fr;
            }
            
        
            .proyectos-amenities {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 576px) {
          
            .proyectos-apartment-details {
                grid-template-columns: 1fr;
            }
            
            .proyectos-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .proyectos-hero-content p {
                font-size: 1.2rem;
            }
        }
   