
        :root {
            --primary-color: #023e8a;
            --secondary-color: #0077b6;
            --accent-color: #ffb703;
            --light-color: #f0faff;
            --dark-color: #03045e;
            --font-main: 'Montserrat', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            line-height: 1.6;
            color: #333;
            background-color: var(--light-color);
            overflow-x: hidden;
        }

        header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

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

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--accent-color);
        }
          .logo img {
    max-height: 40px;
    width: auto;
    display: block;
  }
  @media (max-width: 768px) {
    .logo img {
      max-height: 30px;
    }
  }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 1.5rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
            display: flex;
            align-items: center;
        }

        .nav-links a .nav-icon {
            margin-right: 6px;
            font-size: 1rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
        }

        .hero {
            height: 100vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../wallpaper.jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-top: 60px;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        .featured-img {
    width: 100%;
    max-width: 300px;      /* Ajusta al tamaño deseado */
    height: auto;
    border-radius: 15%;    /* Para que sea completamente circular */
    object-fit: cover;     
    display: block;
    margin: 1.5rem auto;   /* Centra y separa de los párrafos */
}
@media (max-width: 768px) {
    .featured-img {
        max-width: 200px;  /* Un poco más pequeño en móvil */
    }
}
/* Overlay semi-transparente */
.video-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;               /* Oculto por defecto */
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* Contenedor del vídeo */
.video-modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
}

/* Vídeo responsive */
.video-modal video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: black;
}

/* Botón cerrar */
.close-modal {
  position: absolute;
  top: -10px; right: -10px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 36px; height: 36px;
  line-height: 36px;
  text-align: center;
}

/* Ajuste móvil */
@media (max-width: 768px) {
  .video-modal .modal-content {
    max-width: 90%;
  }
  .close-modal {
    top: -8px; right: -8px;
    font-size: 1.5rem;
    width: 30px; height: 30px;
    line-height: 30px;
  }
}

/* Estilos para sección de blogs */
#blogs {
    background: #f9f9f9;
    padding: 4rem 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.blog-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 150px;
    }
}

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            background-color: #e09a20;
        }

        .section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            display: inline-flex;
            align-items: center;
            font-weight: 600;
        }

        .section-title h2 .section-icon {
            margin-right: 10px;
            color: var(--accent-color);
            font-size: 1.2rem;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .featured-project {
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 4rem;
        }

        .featured-project-content {
            display: flex;
            flex-direction: column;
            padding: 2rem;
        }

        .featured-project-header {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .featured-project-header h3 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .featured-project-header p {
            color: var(--secondary-color);
            font-size: 1.1rem;
        }

        .featured-project-details {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .featured-project-info,
        .featured-project-amenities {
            flex: 1;
            min-width: 300px;
            padding: 0 1rem;
        }

        .amenity-list {
            margin-bottom: 1.5rem;
        }

        .amenity-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        .amenity-list li .amenity-icon {
            margin-right: 10px;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .featured-project-cta {
            text-align: center;
            margin-top: 1rem;
        }

        .featured-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .featured-price span {
            color: var(--secondary-color);
            font-size: 1.2rem;
            font-weight: 400;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px 10px 0 0;
            height: 400px;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
        }

        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .slider-dot.active {
            background-color: var(--accent-color);
        }

        .financing-section {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 0;
        }

        .financing-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .financing-info {
            flex: 1;
            min-width: 300px;
            padding: 0 1rem;
        }

        .financing-info .amenity-icon {
  color: #28a745;  /* Cambia a tu color preferido */
}

        .financing-steps {
            flex: 1;
            min-width: 300px;
            padding: 2rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin: 1rem;
        }

        .step {
            display: flex;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }

        .step-number {
            background-color: var(--accent-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .step-content h4 {
            display: inline-flex;
            align-items: center;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .step-content h4 .step-icon {
            margin-right: 8px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .project-card:hover {
            transform: translateY(-10px);
        }

        .project-card-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .project-card-content {
            padding: 1.5rem;
        }

        .project-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
            font-weight: 600;
        }

        .project-card p {
            color: #666;
            margin-bottom: 1rem;
        }

        .project-card .btn {
            font-size: 0.9rem;
            padding: 0.6rem 1.2rem;
        }

        .contact-section {
            background-color: white;
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .contact-info,
        .contact-form {
            flex: 1;
            min-width: 300px;
            padding: 0 1rem;
        }

        .contact-info h3,
        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
            font-weight: 600;
        }

        .contact-details {
            list-style: none;
            margin-bottom: 2rem;
        }

        .contact-details li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .contact-details i {
            width: 30px;
            height: 30px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1rem;
            text-align: center;
        }

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

        .footer-info {
            flex: 1;
            min-width: 200px;
            margin-bottom: 1.5rem;
            padding: 0 1rem;
            text-align: left;
        }

        .footer-info h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
            font-weight: 600;
        }

        .footer-info ul {
            list-style: none;
        }

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

        .footer-info ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-info ul li a:hover {
            color: var(--accent-color);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            font-size: 0.9rem;
            color: #aaa;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 100px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .container {
                width: 95%;
                padding: 0 15px;
            }

            .nav-links {
                position: fixed;
                background-color: var(--primary-color);
                top: 70px;
                left: 0;
                right: 0;
                height: 0;
                overflow: hidden;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                transition: height 0.3s;
            }

            .nav-links.active {
                height: calc(100vh - 70px);
                padding: 2rem 0;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .hamburger {
                display: block;
            }

            .hero {
                padding: 20px 15px;
                text-align: center;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .hero h1 {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
                line-height: 1.3;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: clamp(1rem, 3vw, 1.2rem);
                margin-bottom: 1.5rem;
                line-height: 1.5;
            }

            .hero-content {
                padding: 20px;
                max-width: 100%;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                margin-bottom: 40px;
                padding: 0 15px;
            }

            .section-title h2 {
                font-size: clamp(1.8rem, 4vw, 2.2rem);
                text-align: center;
                margin-bottom: 1rem;
                line-height: 1.3;
            }

            .section-title p {
                font-size: clamp(1rem, 2.5vw, 1.1rem);
                padding: 0 10px;
                line-height: 1.5;
            }

            .featured-project {
                margin: 0 15px;
                border-radius: 15px;
            }

            .featured-project-content {
                padding: 25px 20px;
            }

            .featured-project-header h3 {
                font-size: clamp(1.5rem, 4vw, 2rem);
                line-height: 1.3;
                margin-bottom: 15px;
            }

            .featured-project-details {
                display: block;
                gap: 0;
            }

            .featured-project-info,
            .featured-project-amenities {
                margin-bottom: 25px;
                padding: 0;
            }

            .featured-project-info h4,
            .featured-project-amenities h4 {
                font-size: clamp(1.2rem, 3vw, 1.4rem);
                margin-bottom: 15px;
            }

            .amenity-list li {
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                margin-bottom: 10px;
                line-height: 1.4;
            }

            .featured-project-cta {
                padding: 25px 20px;
                border-radius: 12px;
                margin-top: 20px;
            }

            .featured-project-cta span {
                font-size: clamp(1.8rem, 5vw, 2.2rem);
                display: block;
                margin-bottom: 10px;
            }

            .featured-project-cta p {
                font-size: clamp(1rem, 2.5vw, 1.1rem);
                margin-bottom: 20px;
            }

            .financing-content {
                display: block;
                gap: 0;
            }

            .financing-info,
            .financing-steps {
                margin: 0 15px 30px;
                padding: 25px 20px;
                border-radius: 15px;
            }

            .financing-info h3,
            .financing-steps h3 {
                font-size: clamp(1.3rem, 3.5vw, 1.6rem);
                margin-bottom: 20px;
            }

            .financing-info li {
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                margin-bottom: 12px;
                line-height: 1.4;
            }

            .step {
                padding: 20px;
                margin-bottom: 15px;
                border-radius: 12px;
            }

            .step h4 {
                font-size: clamp(1rem, 2.5vw, 1.2rem);
                margin-bottom: 8px;
            }

            .step p {
                font-size: clamp(0.9rem, 2vw, 1rem);
                line-height: 1.4;
                margin-left: 0;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }

            .project-card {
                margin: 0;
                border-radius: 15px;
            }

            .project-card-content {
                padding: 20px;
            }

            .project-card h3 {
                font-size: clamp(1.2rem, 3vw, 1.4rem);
                margin-bottom: 10px;
            }

            .project-card p {
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                line-height: 1.5;
                margin-bottom: 15px;
            }

            .contact-content {
                display: block;
                gap: 0;
            }

            .contact-info,
            .contact-form {
                padding: 0 15px;
                margin-bottom: 30px;
            }

            .contact-info {
                padding: 25px 20px;
                border-radius: 15px;
                margin: 0 15px 30px;
            }

            .contact-form {
                padding: 25px 20px;
                border-radius: 15px;
                margin: 0 15px;
            }

            .contact-info h3,
            .contact-form h3 {
                font-size: clamp(1.3rem, 3.5vw, 1.6rem);
                margin-bottom: 20px;
            }

            .contact-details li {
                margin-bottom: 15px;
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                line-height: 1.4;
            }

            .form-control {
                padding: 12px 15px;
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                border-radius: 8px;
            }

            .blogs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }

            .blog-card {
                border-radius: 15px;
            }

            .blog-content {
                padding: 20px;
            }

            .blog-content h3 {
                font-size: clamp(1.1rem, 3vw, 1.3rem);
                margin-bottom: 10px;
                line-height: 1.3;
            }

            .blog-content p {
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                line-height: 1.5;
            }

            .footer-content {
                display: block;
                text-align: center;
            }

            .footer-info {
                margin-bottom: 30px;
                text-align: center;
                padding: 0 15px;
            }

            .footer-info h3 {
                font-size: clamp(1.2rem, 3vw, 1.4rem);
                margin-bottom: 15px;
            }

            .back-to-top {
                right: 20px;
                bottom: 90px;
                width: 45px;
                height: 45px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
            }

            .slider-container {
                height: 280px;
                border-radius: 15px 15px 0 0;
            }

            .slide {
                height: 280px;
            }

            .btn {
                padding: 12px 20px;
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                border-radius: 25px;
                line-height: 1.3;
            }

            /* Mejoras específicas para el hero */
            .hero-content > div {
                padding: 20px 15px;
                border-radius: 12px;
                margin-bottom: 25px;
            }

            .hero-content > div p {
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                margin-bottom: 8px;
            }

            /* Mejoras para las amenidades */
            .amenity-list li .amenity-icon {
                margin-right: 8px;
                font-size: 1rem;
                flex-shrink: 0;
            }

            /* Mejoras para precios */
            .featured-price {
                font-size: clamp(1.5rem, 4vw, 1.8rem);
                line-height: 1.2;
            }

            .featured-price span {
                font-size: clamp(1rem, 2.5vw, 1.1rem);
                display: block;
                margin-top: 5px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }

            .hero {
                padding: 15px 10px;
            }

            .hero h1 {
                font-size: clamp(1.6rem, 6vw, 2rem);
                margin-bottom: 15px;
            }

            .hero p {
                font-size: clamp(0.9rem, 3vw, 1.1rem);
                margin-bottom: 20px;
            }

            .hero-content {
                padding: 15px 10px;
            }

            .hero-content > div {
                padding: 15px 12px;
                margin-bottom: 20px;
            }

            .section {
                padding: 40px 0;
            }

            .section-title {
                margin-bottom: 30px;
                padding: 0 10px;
            }

            .section-title h2 {
                font-size: clamp(1.5rem, 5vw, 1.8rem);
                margin-bottom: 10px;
            }

            .section-title p {
                font-size: clamp(0.9rem, 3vw, 1rem);
                padding: 0 5px;
            }

            .featured-project {
                margin: 0 10px;
            }

            .featured-project-content {
                padding: 20px 15px;
            }

            .featured-project-header h3 {
                font-size: clamp(1.3rem, 5vw, 1.6rem);
                margin-bottom: 10px;
            }

            .featured-project-info h4,
            .featured-project-amenities h4 {
                font-size: clamp(1.1rem, 4vw, 1.3rem);
                margin-bottom: 12px;
            }

            .amenity-list li {
                font-size: clamp(0.85rem, 3vw, 0.95rem);
                margin-bottom: 8px;
            }

            .featured-project-cta {
                padding: 20px 15px;
                margin-top: 15px;
            }

            .featured-project-cta span {
                font-size: clamp(1.6rem, 6vw, 2rem);
            }

            .featured-project-cta p {
                font-size: clamp(0.9rem, 3vw, 1rem);
                margin-bottom: 15px;
            }

            .financing-info,
            .financing-steps {
                margin: 0 10px 25px;
                padding: 20px 15px;
            }

            .financing-info h3,
            .financing-steps h3 {
                font-size: clamp(1.2rem, 4vw, 1.4rem);
                margin-bottom: 15px;
            }

            .financing-info li {
                font-size: clamp(0.85rem, 3vw, 0.95rem);
                margin-bottom: 10px;
            }

            .step {
                padding: 15px;
                margin-bottom: 12px;
            }

            .step h4 {
                font-size: clamp(0.95rem, 3vw, 1.1rem);
                margin-bottom: 6px;
            }

            .step p {
                font-size: clamp(0.85rem, 2.5vw, 0.95rem);
            }

            .projects-grid {
                gap: 15px;
                padding: 0 10px;
            }

            .project-card-content {
                padding: 15px;
            }

            .project-card h3 {
                font-size: clamp(1.1rem, 4vw, 1.3rem);
                margin-bottom: 8px;
            }

            .project-card p {
                font-size: clamp(0.85rem, 3vw, 0.95rem);
                margin-bottom: 12px;
            }

            .contact-info,
            .contact-form {
                margin: 0 10px 25px;
                padding: 20px 15px;
            }

            .contact-info h3,
            .contact-form h3 {
                font-size: clamp(1.2rem, 4vw, 1.4rem);
                margin-bottom: 15px;
            }

            .contact-details li {
                font-size: clamp(0.85rem, 3vw, 0.95rem);
                margin-bottom: 12px;
            }

            .form-control {
                padding: 10px 12px;
                font-size: clamp(0.85rem, 3vw, 0.95rem);
            }

            .blogs-grid {
                gap: 15px;
                padding: 0 10px;
            }

            .blog-content {
                padding: 15px;
            }

            .blog-content h3 {
                font-size: clamp(1rem, 4vw, 1.2rem);
                margin-bottom: 8px;
            }

            .blog-content p {
                font-size: clamp(0.85rem, 3vw, 0.95rem);
            }

            .footer-info {
                padding: 0 10px;
                margin-bottom: 25px;
            }

            .footer-info h3 {
                font-size: clamp(1.1rem, 4vw, 1.3rem);
                margin-bottom: 12px;
            }

            .slider-container {
                height: 220px;
            }

            .slide {
                height: 220px;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                bottom: 15px;
                right: 15px;
            }

            .back-to-top {
                width: 40px;
                height: 40px;
                right: 15px;
                bottom: 75px;
                font-size: 1rem;
            }

            .btn {
                padding: 10px 16px;
                font-size: clamp(0.85rem, 3vw, 0.95rem);
            }

            /* Mejoras específicas para textos pequeños */
            .featured-img {
                max-width: 250px;
                margin: 1rem auto;
            }

            /* Espaciado mejorado */
            .amenity-list li {
                display: flex;
                align-items: flex-start;
                text-align: left;
            }

            .amenity-list li .amenity-icon {
                margin-right: 6px;
                margin-top: 2px;
                font-size: 0.9rem;
            }
        }
