        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: "Poppins", serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            background-color: rgb(231, 76, 60);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1rem;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            color: #FFD700;
            font-size: 1.5rem;
            font-weight: bold;
            background: no-repeat url("logo.png");
            
        }
    img  {
            margin-top:-10px;
            margin-bottom:-10px;
            
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            font-family: "Poppins", serif;
            font-weight: 500;
            font-style: normal;
        }

        .nav-links a:hover {
            color: #FFD700;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: 0.3s;
        }

        section {
            min-height: 100vh;
            padding: 80px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .content {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            text-align: center;
            padding: 20px;
        }

        #home {
            background:  url("../condominio_4.png");
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background:opacity: 0.5;
            color: white;
        }

        #quienes-somos {
            background-color: #f5f5f5;
        }

        #materiales {
            background-color: white;
        }

        #contacto {
            background-color: #f5f5f5;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #0992e9;
            text-align: center;
            font-family: "Poppins", Sans-serif;
            font-weight: 600;
        }

        h2 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #FFF;
        }

        .hero-text {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-family: "Poppins", serif;
            font-weight: 350;*/
            font-style: normal;
            color:#111;
        }


        .materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .material-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .material-card:hover {
            transform: translateY(-5px);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-card {
            background: white;
            padding: 1.0rem;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .spacem{
               margin-left:20px;
               margin-top:20px;
            }
        p{
            font-family: "Poppins", serif;
            font-weight: 300;
            font-style: normal;
         }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: rgb(231, 76, 60); /*rgba(0, 0, 0, 0.95);*/
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                font-size: 1.2rem;
                padding: 1rem 2rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.4rem;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

        }
    .btn{
        text-decoration: none;
        display: inline-block;
        background-color: #e74c3c;
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: bold;
        text-transform: uppercase;
        transition: all 0.3s ease;
        animation: fadeInUp 1.4s ease;
    }
       .btn2{
        position: relative;
        bottom: 0;
        text-decoration: none;
        display: inline-block;
        background-color: #e74c3c;
        color: white;
        padding: 5px 30px;
        border-radius: 30px;
        font-weight: normal;
        text-transform: uppercase;
        transition: all 0.3s ease;
        animation: fadeInUp 1.4s ease;
    }
        /* Galería - CORRECCIÓN AQUÍ */
        #gallery {
            background-color: white;
            padding-top: 120px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 columnas para mostrar 3 imágenes por fila */
            gap: 30px;
            margin-top: 40px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .gallery-image {
            height: 250px;
            background-color: #eee;
            overflow: hidden;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-image img {
            transform: scale(1.1);
        }

        .gallery-caption {
            padding: 15px;
            background-color: white;
        }

        .gallery-caption h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        /* Media queries para la galería */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
            }
        }

        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr; /* 1 columna en móviles */
            }
        }
 
