/* General */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background-color: #fefefe;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    background-image: url('assets/masaje.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* oscurece la imagen */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-btn {
    background-color: #82b3a6;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 25px;
  }
  
  /* Info Section */
  .intro-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #f1f8f5;
  }
  
  .intro-text {
    flex: 1;
    min-width: 280px;
  }
  
  .intro-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2f2f2f;
  }
  
  .intro-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
  }
  
  .intro-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  
  .intro-features li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #2d2d2d;
  }
  
  .intro-features li span {
    color: #2b845c;
    margin-right: 8px;
  }
  
  .intro-btn {
    background-color: #a9cdb8;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .intro-btn:hover {
    background-color: #88b9a2;
  }
  
  .intro-image {
    flex: 1;
    position: relative;
    min-width: 280px;
  }
  
  .main-image {
    width: 60%;
    border-radius: 20px;
    object-fit: cover;
  }
  
  .overlay-image {
    position: absolute;
    bottom: -20px;
    left: 30px;
    width: 40%;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  }
  
  
  
  /* Stats Section */
  .stats {
    display: flex;
    justify-content: space-around;
    padding: 3rem 2rem;
    background-color: #e5f0ec;
    text-align: center;
  }
  
  .stat h3 {
    font-size: 2rem;
    color: #3e8270;
    margin-bottom: 0.5rem;
  }
  

  .services-section {
    background: #f1f8f5;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .services-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
  }
  
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
  }
  
  .service-image img {
    width: 300px;
    border-radius: 20px;
    object-fit: cover;
  }
  
  .service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
  }
  
  .service-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.2rem;
    text-align: left;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    background-color: #6a9c91;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .service-card h4 {
    margin-bottom: 0.5rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
  }
  

  @media (max-width: 768px) {
    .service-cards {
      grid-template-columns: 1fr;
    }
    .services-grid {
      flex-direction: column;
    }
  }
  
  .contact-section {
    background-color: #f7fdfa;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d4b45;
  }
  
  .contact-section p {
    margin-bottom: 2rem;
    color: #555;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    resize: vertical;
  }
  
  .contact-form button {
    background-color: #6a9c91;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #527b71;
  }
  

  .site-footer {
    background-color: #f1f8f5;
    color: #2d4b45;
    padding: 3rem 2rem 1rem;
    font-size: 0.95rem;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
    border-bottom: 1px solid #c7ded7;
    padding-bottom: 2rem;
  }
  
  .footer-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #406e64;
  }
  
  .footer-content p {
    margin: 0.3rem 0;
  }
  
  .footer-social a {
    margin-right: 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    color: #406e64;
    transition: color 0.3s;
  }
  
  .footer-social a:hover {
    color: #6a9c91;
  }
  
  .footer-bottom {
    text-align: center;
    color: #7c9a8c;
    font-size: 0.85rem;
  }
  
  .footer-icons{
    padding-left: 0.5rem;
  }

  @media (max-width: 1024px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .intro-section {
      flex-direction: column;
      text-align: center;
    }
  
    .intro-image {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }
  
    .main-image, .overlay-image {
      width: 80%;
      position: relative;
    }
  
    .overlay-image {
      position: absolute;
      bottom: -10px;
      left: 10%;
      width: 50%;
    }
  
    .services-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .service-image img {
      width: 100%;
      max-width: 400px;
    }
  }

  @media (max-width: 768px) {
    .hero {
      height: 80vh;
      padding: 2rem;
    }
  
    .hero-content h1 {
      font-size: 1.6rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .intro-section {
      padding: 2rem 1rem;
    }
  
    .intro-text h2 {
      font-size: 1.5rem;
    }
  
    .intro-description,
    .intro-features li {
      font-size: 0.95rem;
    }
  
    .stats {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }
  
    .services-section {
      padding: 2rem 1rem;
    }
  
    .service-cards {
      grid-template-columns: 1fr;
    }
  
    .contact-form {
      padding: 0 1rem;
    }
  
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-social a {
      margin-right: 0.5rem;
    }
  }


 @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 1.4rem;
    }
  
    .hero-content p {
      font-size: 0.95rem;
    }
  
    .hero-btn, .intro-btn {
      width: 100%;
      padding: 1rem;
      font-size: 1rem;
    }
  
    .service-card {
      padding: 1rem;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 0.95rem;
    }
  
    .footer-content h3 {
      font-size: 1rem;
    }
  
    .footer-content p,
    .footer-bottom {
      font-size: 0.85rem;
    }
  }