/* ===== RESET BÁSICO ===== */
:root {
  --verde-oliva: #6B8E23;
  --bittersweet: #FE6F5E;
  --rosa-empolvado: #D8A7B1;
  --gris-piedra: #7D7D7D;
  --beige-claro: #FEE7D7;
  --fuente-principal: 'Dancing Script', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: url(./img/fondo.png);
  color: #333;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar-brand img.icon-frist {
  width: 40px;
  margin-right: 8px;
}

.opciones {
  font-size: 1rem;
  margin: 0 8px;
  color: var(--verde-oliva);
}

/* ===== SWIPER ===== */
/* ===== SWIPER ===== */
.swiper {
  width: 100%;
  min-height: 300px;
  height: auto;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  min-height: 300px;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}

.swiper-pagination-bullet {
  background: var(--gris-piedra);
  border-radius: 8px;
  transition: all 0.5s ease;
}

.swiper-pagination-bullet-active {
  background: var(--bittersweet);
  width: 30px;
}

.info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: var(--fuente-principal);
  font-size: 1.5em;
  font-weight: bold;
  padding: 12px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: auto;
  max-width: 90%;
}

/* ===== TITULOS SLIDES ===== */
.titulosslides {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-top: 120px;
  font-family: var(--fuente-principal);
  color: var(--bittersweet);
}

/* ===== SECCIÓN NOSOTROS ===== */
.servicios {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: var(--fuente-principal);
  color: var(--bittersweet);
}

.serv-p {
  	font-size: 1rem;
  	color: #333;
}

.imagenmenu {
  max-width: 100%;
  border-radius: 12px;
}

/* ===== CAROUSELES DEL MENÚ ===== */
.carousel-img {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.tituloS {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: var(--fuente-principal);
  color: var(--bittersweet);
}

.carousel-item {
  background-color: #fff; /* Fondo blanco sólido */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Sombra suave */
  padding: 20px;
}


/* ===== FORMULARIO ===== */
.formulario {
  max-width: 600px;
  margin: 60px auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.formulario__titulo {
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-principal);
  font-size: 2em;
  color: var(--verde-oliva);
}

.formulario__input,
.formulario textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 1rem;
  border: 1px solid var(--verde-oliva);
  border-radius: 8px;
  font-size: 1.1em;
  background-color: #fff;
  color: #000;
}

.formulario__input::placeholder {
  color: var(--gris-piedra);
  font-style: italic;
}

.formulario__submit {
  background-color: var(--verde-oliva);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1em;
}

/* ===== FOOTER ===== */
footer {
  font-size: 0.9rem;
  padding: 20px;
  background-color: #fff;
  text-align: center;
  max-width: 100%;
  overflow-wrap: break-word;
}

.imagenesfooter {
  width: 30px;
  transition: transform 0.2s;
  border-radius: 50%;
}

.imagenesfooter:hover {
  transform: scale(1.1);
}

/* ===== ESPACIADO ENTRE SECCIONES ===== */
section,
.nuestros-somos,
.infoseg,
.custom-carousel,
.formulario,
.fondo,
.carrusel {
  margin: 60px auto;
  padding: 40px 20px;
  max-width: 1200px;
}

/* ======== RESPONSIVIDAD ======== */

/* Tablets */
@media (max-width: 992px) {
  .swiper {
    min-height: 300px;
  }

  .swiper-slide {
    min-height: 300px;
  }

  .titulosslides {
    font-size: 2.2rem;
    margin-top: 100px;
  }

  .carousel-img {
    height: 200px;
  }
}

/* Móviles */
@media (max-width: 768px) {
  .swiper {
    min-height: 250px;
  }

  .swiper-slide {
    min-height: 250px;
  }

  .titulosslides {
    font-size: 1.6rem;
    margin-top: 80px;
  }

  .carousel-img {
    height: 180px;
  }

  .servicios {
    font-size: 1.5rem;
  }

  .formulario {
    padding: 1.2rem;
  }

  .info {
    font-size: 1.2em;
    padding: 10px 15px;
  }
}

/* Celulares pequeños */
@media (max-width: 480px) {
  .swiper {
    min-height: 200px;
  }

  .swiper-slide {
    min-height: 200px;
  }

  .titulosslides {
    font-size: 1.3rem;
    margin-top: 60px;
  }

  .carousel-img {
    height: 150px;
  }

  .imagenesfooter {
    width: 25px;
  }
}

/* Pantallas grandes */
@media (min-width: 1200px) {
  .swiper {
    min-height: 400px;
  }

  .swiper-slide {
    min-height: 400px;
  }

  .titulosslides {
    font-size: 3.5rem;
    margin-top: 100px;
  }

  .carousel-img {
    height: 300px;
  }
}
