/* Variables de color y configuración */
:root {
    --primary-color: #333;
    --secondary-color: #b59d5c; /* Dorado suave */
    --background-color: #fff;
    --hero-overlay-color: rgba(0, 0, 0, 0.4);
    --footer-bg: #222;
    --footer-text: #ccc;
    --container-max: 1200px;
  }
  
  /* Reset básico y tipografía */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    background-color: var(--background-color);
    overflow-x: hidden;
  }
  
  /* Botón flotante de WhatsApp */
  .whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    z-index: 100;
  }
  
  .whatsapp-float img {
    width: 100%;
    height: auto;
  }
  
  /* Sección Hero */
  .hero {
    position: relative;
    height: 100vh;
    background: url('image0.webp') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 222, 179, 0.6), rgba(255, 228, 196, 0.6)); /* Tonos cálidos */
    mix-blend-mode: multiply;
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
  }
  
  .business-name {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  }
  
  .btn {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 20px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .btn:hover {
    background-color: #fff;
    color: var(--primary-color);
  }
  
  /* Contenedores generales */
  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Sección About */
  .about {
    padding: 60px 20px;
    text-align: center;
  }
  
  .about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  /* Sección Servicios */
  .services {
    background-color: #f9f9f9;
    padding: 40px 20px;
  }
  
  .services .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }
  
  .service-item {
    text-align: center;
    flex: 1 1 250px;
    padding: 20px;
  }
  
  .service-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
  }
  
  .service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 1rem;
  }
  
  /* Sección Galería */
  .gallery {
    padding: 60px 20px;
  }
  
  .gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    display: block;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .project-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    text-align: center;
  }
  
  .gallery-item:hover .project-title {
    transform: translateY(0);
  }
  
  .cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
  }
  
  .cta a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: text-decoration 0.3s;
  }
  
  .cta a:hover {
    text-decoration: underline;
  }
  
  /* Sección Testimonios */
  .testimonials {
    background-color: #333;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .testimonial-item.active {
    display: block;
    opacity: 1;
  }
  
  .testimonial-item p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .testimonial-item h4 {
    font-size: 1rem;
    font-weight: normal;
  }
  
  /* Footer */
  footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 20px;
    text-align: center;
  }
  
  footer .social-media a {
    margin: 0 10px;
    display: inline-block;
  }
  
  footer .social-media img {
    width: 30px;
    height: auto;
  }
  
  footer .contact-info p {
    margin: 10px 0;
  }
  
  footer .contact-info a {
    color: var(--footer-text);
    text-decoration: none;
  }
  
  footer .legal {
    margin-top: 20px;
    font-size: 0.9rem;
  }
  
  footer .legal a {
    color: var(--footer-text);
    text-decoration: none;
  }
  
  footer .legal a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero {
      height: 100vh;
      background-size: cover;
    }
    .business-name {
      font-size: 2.5rem;
    }
    .tagline {
      font-size: 1.2rem;
    }
    .btn {
      padding: 8px 16px;
    }
    .services .container,
    .gallery-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  