.cabin-normal {
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}
  
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: "Cabin", sans-serif;
}
  
h1, h3, h4, h5, h6, p, button {
  margin: 0;
  padding: 0;
}
  
body {
  background-color: white;
}
  
/* ========== MENU ========== */
  .menu {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    padding: 1rem;  
  }
  
  .menu-logo-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-block; 
  }
  
  .menu-logo {
    height: 180px;
    width: auto;
  }
  
  .menu-items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    width: 100%; 
    padding: 0 2rem;
    color: #000;
  }
  
  .menu-item {
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .menu-item:hover {
    background-image: url('images/brush.webp');
    background-size: cover;
    background-position: center;
  }
  
  .menu-item button {
    width: 150px;
    min-height: 80px;
    font-size: 1.6rem;
    font-family: "Cabin", sans-serif;
    font-weight: bold;
    background: none;
    border: 0px;
    color: #222; 
    transition: all 0.4s ease-in-out;
  }
  
  .menu-item button:hover {
    color: #FFF;
    cursor: pointer;
  }
  
  
/* ========== HEAD ========== */

.calendario-section {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.calendario-section h1 {
  font-size: 2.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e6cc9c;
  margin-bottom: 10px;
}

.calendario-divider {
  width: 60px;
  height: 2px;
  background-color: #e1ceaa;
  margin: 0 auto 30px;
}

.calendario-section h2 {
  font-size: 1.4rem;
  font-weight: normal;
  color: #171717;
  margin-bottom: 20px;
}

.calendario-section p {
  font-size: 1rem;
  color: #555050;
  line-height: 1.9;
  text-align: justify;
}

.calendario-section h3 {
  font-size: 1.1rem;
  font-weight: normal;
  color: #555050;
  font-style: italic;
  margin-bottom: 30px;
}
  
/* ========== FOOTER ========== */
.footer-container {
  width: 100%;
  min-height: 288px;
  position: relative;
  background: white;
  overflow: hidden;
}
  
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #E6E6E6;
  position: absolute;
  left: 0;
  top: 0;
}
.footer-main {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  width: auto;
  max-width: 280px;
  height: 180px;
  border-radius: 20px;
  object-fit: contain;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
  
.footer-title {
  color: black;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  word-wrap: break-word;
}
  
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
  
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
  
.social-icon:hover {
  background-color: #f0f0f0;
}
  
.social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  text-decoration: none;
}
.footer-menu-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
  
.footer-menu-left a {
  color: black;
  font-weight: 500;
  line-height: 24px;
  word-wrap: break-word;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: none;
}
  
.footer-menu-left a:hover {
  color: #666;
}
.footer-credits {
  text-align: center;
  color: black;
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  margin-top: 2rem;
}

/* ========== whatsapp ========== */

.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
  
.whatsapp-btn:hover {
  transform: scale(1.1);
}
  
.whatsapp-btn img {
  width: 100%;
  height: 100%;
}
  

/* ========== RESPONSIVE DESIGN ========== */
  
  @media (max-width: 1024px) {
    .menu-item button {
      width: 120px;
      min-height: 60px;
      font-size: 1.3rem;
    }
    
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    
    .footer-logo {
      grid-column: 1;
      grid-row: 1 / 3;
      max-width: 220px;
    }
    
    .footer-title {
      grid-column: 2;
      grid-row: 1;
    }
    
    .footer-social {
      grid-column: 2;
      grid-row: 2;
    }
    
    .footer-menu-left {
      grid-column: 1 / 3;
      grid-row: 3;
      flex-direction: row;
      justify-content: center;
      gap: 2rem;
      justify-self: center;
    }
    
    .footer-divider {
      grid-column: 1 / 3;
      grid-row: 4;
    }
    
    .footer-credits {
      grid-column: 1 / 3;
      grid-row: 5;
    }
  }
  
@media (max-width: 768px) {
  
  .menu {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0.5rem;
}

.menu-logo {
    height: 100px;
}

.menu-items {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.menu-item {
    min-width: auto;
}

.menu-item button {
    width: 100px;
    min-height: 50px;
    font-size: 1.1rem;
}

.menu-item:hover {
    background-size: contain;
}
  
    
.calendario-section {
  padding: 20px 15px;
}

.calendario-section h1 {
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.calendario-section h2 {
  font-size: 1.2rem;
}

.calendario-section p {
  font-size: 0.95rem;
  text-align: left;
}

.calendario-section h3 {
  font-size: 1rem;
}

.calendly-inline-widget {
  min-width: 100% !important;
  height: 600px !important;
}
  
.footer {
  padding: 2rem 1rem;
}
  
.footer-container {
  min-height: auto;
  padding: 2rem 1rem;
}
  
.footer-main {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
  
.footer-logo {
  grid-column: 1;
  grid-row: 1;
  max-width: 200px;
  margin: 0 auto;
}
  
.footer-title {
  grid-column: 1;
  grid-row: 2;
  font-size: 1.25rem;
}
  
.footer-social {
  grid-column: 1;
  grid-row: 3;
}
  
.footer-menu-left {
  grid-column: 1;
  grid-row: 4;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: 1rem;
}
  
.footer-divider {
  grid-column: 1;
  grid-row: 5;
}

.footer-credits {
  grid-column: 1;
  grid-row: 6;
}
}
  
@media (max-width: 480px) {
  
  .menu {
    padding: 0.25rem;
  }

  .menu-logo {
    height: 80px;
  }

  .menu-items {
    gap: 0.25rem;
    margin-top: 0.5rem;
  }

  .menu-item button {
    width: 70px;
    min-height: 40px;
    font-size: 0.85rem;
  }


  .calendario-section h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .calendario-section h2 {
    font-size: 1.1rem;
  }

  .calendario-section p {
    font-size: 0.9rem;
  }

  .calendario-section h3 {
    font-size: 0.95rem;
  }

  .calendly-inline-widget {
    height: 550px !important;
  }
  
  .footer-container {
    padding: 1.5rem 1rem;
    min-height: auto;
  }
  
  .footer-main {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-logo {
    max-width: 130px;
    height: auto;
  }
  
  .footer-title {
    font-size: 1rem;
  }

  .footer-menu-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .social-icon {
    width: 20px;
    height: 20px;
  }

}
  