/* Reset y fuente base */
body {
  font-family: 'Assistant', sans-serif;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}


/* Banner principal */
.banner {
  background-color: #fff;
  /* Reemplazá con tu imagen */
  /* animation: zoomIn 8s ease-out infinite alternate; */
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.03);
  }
}

.banner h1 {
  font-family: "Belleza", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #687a62;
}

.banner h2 {
  font-family: "Belleza", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #8b6d53;
}

.banner p {
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
  max-width: 600px;
  color: #000;
}

.banner .btn-dark {
  padding: 20px;
  font-family: 'Belleza', sans-serif;
  font-size: 1.2rem;
  background-color: #eb9757;
  border-style: none;
  color: #fff;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.banner .btn-dark:hover {
  background-color: #d07733;
}


/* Estilo general para la imagen */
.banner-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Altura mínima solo en pantallas grandes */
@media (min-width: 768px) {
  .banner-img {
    min-height: 500px;
    /* ajustá según tu diseño */
  }
}


/* Menú */
.navbar {
  background-color: rgba(244, 240, 237, 0.8);
  /* color f4f0ed con 90% opacidad */
  backdrop-filter: blur(6px);
  /* opcional: efecto de vidrio esmerilado */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.navbar .nav-link {
  font-family: "Belleza", sans-serif;
  font-size: 1.3rem;
  margin: 20px;
  color: #333;
  font-weight: 500;
  position: relative;

}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #6a7662;
}

.navbar .nav-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #6a7662;
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar .nav-link:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .navbar-nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav .nav-item {
    margin: -4px 0; /* Reduce el espacio vertical entre ítems */
  }

  .navbar-nav .nav-link {
    padding: 0px 4px; /* Ajusta el alto del área clickeable */
  }
}

.logo-img {
  max-height: 100px;
  transition: max-height 0.3s ease;
}

.logo-small {
  max-height: 60px;
  /* o el tamaño que prefieras */
}

@media (max-width: 768px) {
  .logo-img {
    max-height: 80px;
  }
}

/* Secciones */
section {
  padding: 80px 0;
}

/* Sección Servicios */
#servicios {
  background-color: #687a62;
  color: #f9f1e6;
  padding: 80px 0;
  font-family: 'Assistant', sans-serif;
}

/* Título y subtítulo */
#servicios h2,
#servicios h3 {
  font-family: 'Belleza', cursive;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 2.5rem;
}

#servicios h5 {
  font-family: 'Belleza', cursive;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1.5rem;
}

#servicios p {
  font-family: 'Assistant';
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
  color: #f9f1e6;
}

/* Bloques de servicio */

.icon-servicio {
  color: #eb9757 !important;
  size: 3.5rem;
}


/* Si incluís tarjetas de curso individuales */
#servicios .servicios-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: none !important;
  border: none;
  border-radius: 8px;
   height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* opcional para suavizar bordes */
  transition: transform 0.3s ease
}

#servicios .servicios-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.servicios-card {
  box-shadow: none !important;
}



/* Sección Cursos */
#cursos {
  background-color: #eb9757;
  color: #f9f1e6;
  padding: 20px;
  font-family: 'Assistant', sans-serif;
}

/* Título y subtítulo */
#cursos h2,
#cursos h3 {
  font-family: 'Belleza', cursive;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 2.5rem;
}

/* Contenido central */
#cursos p,
#cursos ul {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

/* Si incluís tarjetas de curso individuales */
#cursos .course-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  transition: transform 0.3s ease
}

#cursos .course-card-3:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

#cursos .card-text {
  font-family: 'Assistant', sans-serif;
  font-size: 0.9rem;
}

#cursos .card-title {
  font-family: 'Belleza', sans-serif;
  font-size: 1.4rem;
}

#cursos .btn {
  margin-top: 20px;
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
  padding: 10px 15px;
}

/* Sección PORTFOLIO */
.portfolio-section {
  background-color: #fff;
}

#portfolio h2,
#portfolio h3 {
  font-family: 'Belleza', cursive;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 2.5rem;
  color: #eb9757;
}

.portfolio-card {
  padding: 10px 10px 30px;
  border: none;
  background-color: #e0dfdd;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

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

.portfolio-card img {
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.portfolio-card .card-text {
  font-family: 'Assistant', sans-serif;
  font-size: 0.9rem;
}
.portfolio-card p {
  font-family: 'Assistant', sans-serif;
  font-size: 0.9rem;
}

.portfolio-card .card-title {
  font-family: 'Belleza', sans-serif;
  font-size: 1.4rem;
}
#portfolio .btn {
  margin-top: 20px;
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 15px;
}
#cursos .btn {
  margin-top: 20px;
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
  padding: 10px 15px;
}
/*SECCION CLIENTES*/
.reseñas-section {
  background-color: #fff;
}
#clientes h2,
#clientes h3 {
  font-family: 'Belleza', cursive;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 2.5rem;
  color: #687a62;
}
#clientes h5 {
  font-family: 'Belleza', cursive;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  color: #000;
}
.reseña-card p {
  font-family: 'Assistant', sans-serif;
  font-size: 0.9rem;
}
.reseña-card {
  padding: 10px;
  background-color: #fdfdfd;
  border-radius: 8px;
  border: none;
  transition: transform 0.4s ease;
}

.reseña-card:hover {
  transform: translateY(-5px);
}

.reseña-card img {
  object-fit: cover;
}
/* Sección CONTACTO */
#contacto {
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-bg {
  background: linear-gradient(to right, #f1f1f1, #e1e1e1);
  padding: 40px;
  text-align: center;
}
#contacto h2 {
  font-family: 'Belleza', cursive;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 2.5rem;
  color: #687a62;
}
#contacto h3 {
  font-family: 'Belleza', cursive;
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  color: #161616;
}
.form-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .form-wrapper {
    width: 60%;
  }
}


.social-icons a {
  font-size: 30px;
  margin: 0 15px;
  color: #444;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #a15a3c;
}
.contact-form input,
.contact-form textarea {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 12px;
  font-family: 'Belleza', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8b6d53;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(139, 109, 83, 0.25);
}

.contact-form button {
  font-family: 'Assistant', sans-serif;
  background-color: #eb9757;
  border: none;
  transition: background-color 0.4s ease;
}

.contact-form button:hover {
  background-color: #d07733;
}
.footer-section {
  background-color: #8b6d53; /* color de marca */
  color: #fff;
}

.footer-section a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d3b094;
}
.footer h3 {
  font-family: 'Belleza', cursive;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  color: #d3b094;
}
.footer-section .social-icons i {
  font-size: 1.5rem;
}
/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 35px;
  background-color: #25D366;
  color: white;
  border-radius: 5%;
  padding: 10px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Botón volver arriba */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  font-size: 25px;
  background-color: #a5583c;
  color: white;
  border-radius: 5%;
  padding: 10px;
  border: none;
  z-index: 1000;
  cursor: pointer;
  transition: opacity 0.3s ease;

}

/* Animación opcional */
.back-to-top:hover,
.whatsapp-float:hover {
  transform: scale(1.1);
}

.navbar.shrink {
  padding: 0.5rem 1.5rem;
}

.navbar.shrink .logo-img {
  max-height: 70px;
}