    /* Reset y estilo base */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    scroll-behavior: smooth;
    }

    /* Hero */
    .hero {
    position: relative;
    background: url('IMAGENES/hero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    }
    .hero .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    }
    .hero-content {
    position: relative;
    z-index: 1;
    }
    .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    }
    .hero h2 {
    font-size: 1.5rem;
    margin: 10px 0;
    }

    /* Acerca de */
    .about {
    padding: 80px 10%;
    }
    .about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    }
    .about-text {
    flex: 1;
    min-width: 300px;
    }
    .about-image {
    flex: 1;
    min-width: 300px;
    }
    .about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }
    .btn {
    display: inline-block;
    margin-top: 20px;
    background: #7b4c2e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    }
    .btn:hover {
    background: #9a6c47;
    }

    .about-text p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #333;
    }

    .about-text strong {
    color: #7b4c2e;
    font-weight: 600;
    }


    /* Servicios */
    .services {
    background: #f9f9f9;
    padding: 80px 10%;
    text-align: center;
    }
    .services h2 {
    margin-bottom: 40px;
    }
    .service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    }
    .service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .service-card img {
  width: 100%;
  height: 200px;           /* altura uniforme */
  object-fit: cover;       /* recorta sin deformar */
  object-position: center; /* centra el recorte */
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
}


    /* Soluciones */
    .solutions {
    padding: 80px 10%;
    background: #fff;
    }
    .solutions-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    }
    .solutions-text {
    flex: 1 1 420px;
    min-width: 280px;
    }
    .solutions-text h2 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    line-height: 1.25;
    }
    .solutions-text p {
    color: #555;
    }
    .solutions-text p {
    margin-bottom: 16px;
    line-height: 1.65;
    color: #444;
    }

    .solutions-text strong {
    color: #7b4c2e;
    font-weight: 600;
    }


/* Composición de imágenes a la derecha */
    .solutions-images {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    flex: 1 1 420px;
    min-width: 280px;
    justify-content: flex-end;
    }
    .img-large {
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }
    .img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }
    .img-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 40%;
    }
    .img-small {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    }
    .img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }

    /* Responsive: en pantallas pequeñas apilar y centrar */
    @media (max-width: 900px) {
    .solutions-images {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }
    .img-large {
        width: 100%;
    }
    .img-stack {
        width: 100%;
        flex-direction: row;
    }
    .img-small { width: 50%; }
    .solutions-inner { flex-direction: column-reverse; gap: 24px; align-items: center; }
    .solutions-text { text-align: center; }
    }

    @media (max-width: 480px) {
    .solutions-text h2 { font-size: 1.3rem; }
    .img-small { width: 48%; }
    }


    /* Testimonios */
    .testimonials {
    background: #f9f9f9;
    padding: 80px 10%;
    text-align: center;
    }
    .testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    }
    .testimonial {
    background: #fff;
    border-left: 4px solid #7b4c2e;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    }

    /* Contacto */
    .contact {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 60px 10%;
    }
    .contact-info a {
    color: #d9a46f;
    text-decoration: none;
    }
    .contact-info a:hover {
    text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .about-content { flex-direction: column; }
    .service-grid, .testimonials-grid { flex-direction: column; align-items: center; }
    }

    .whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #1877f2;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  background: #145dbf;
}
