/* ========================================
   PURE LIFE - CSS REFACTORIZADO
   Versión limpia y organizada
   SIN cambios visuales, solo reorganizado
   ======================================== */

/* ========================================
   1. GOOGLE FONTS Y SETUP BASE
   ======================================== */
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Galada&family=Gentium+Plus:ital,wght@0,400;0,700;1,400;1,700&display=swap");

/* ========================================
   2. RESET Y ESTILOS GLOBALES
   ======================================== */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  scroll-padding-top: 1.25rem;
  scroll-behavior: smooth;
}

.contenedorPrincipal {
  background-color: #f7f7f7;
  max-width: 1440px;
  margin: 0 auto;
}

/* ========================================
   3. NAVBAR / NAVEGACIÓN
   ======================================== */
.navbar {
  position: absolute;
  z-index: 1000;
  width: 100%;
  max-width: 1440px;
  overflow: hidden;
}

.custom-navbar {
  background: transparent;
}

.navbar-nav .nav-link,
.navbar-brand,
.navbar-toggler-icon {
  color: #ffffff;
  font-family: "Gentium Plus", serif;
  font-size: 1.1rem;
}

.navbar-brand {
  font-family: "Galada", cursive;
  font-size: 2.5rem;
  color: #fff;
}

.navbar-brand:hover {
  font-family: "Galada", cursive;
  color: #fff;
}

.nav-item {
  margin-left: 20px;
  margin-right: 20px;
}

.navbar-toggler-icon {
  font-size: 1.5rem;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 991.98px) {
  .offcanvas-start .nav-link,
  .offcanvas-start .offcanvas-title {
    color: #111;
    font-family: "Serif", serif;
  }
}

/* ========================================
   4. BOTONES GLOBALES
   ======================================== */
.custom-btn,
.btnContact,
.btnAbout,
.btnServicio,
.btnEnviarForm,
.btn-explorar {
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Serif", serif;
  border-radius: 0;
}

/* Botón Contact (Navbar) */
.btnContact {
  background-color: transparent;
  border: 1px solid white;
  color: #fff;
  padding: 6px 20px;
  font-size: 16px;
}

.btnContact:hover {
  color: #111;
  background-color: #fff;
}

/* Botón About */
.btnAbout {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
  background-color: transparent;
  border: 1px solid #111;
  color: #111;
  padding: 10px 20px;
  font-size: 1rem;
}

.btnAbout:hover {
  color: #fff;
  background-color: #111;
}

/* Botón Servicio */
.btnServicio {
  position: relative;
  display: inline-block;
  background: transparent;
  color: #111;
  border: none;
  font-family: "Gentium Plus", serif;
}

.btnServicio::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background-color: #000;
  margin: 0 auto;
  position: absolute;
  left: 20%;
}

/* Botón Enviar Formulario */
.btnEnviarForm {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 6px 20px;
  font-size: 16px;
  margin-top: 10px;
}

.btnEnviarForm:hover {
  color: #333;
  background-color: #fff;
}

/* Botón Explorar */
.btn-explorar {
  background-color: transparent;
  border: 1px solid #333;
  color: #333;
  padding: 10px 20px;
  font-size: 16px;
}

.btn-explorar:hover {
  color: #f7f7f7;
  background-color: #333;
}

/* ========================================
   5. CAROUSEL / HERO
   ======================================== */
.carousel {
  height: 820px;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.imagenCarusel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-caption {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Títulos del Carousel */
.tituloCarusel1,
.tituloCarusel2,
.tituloCarusel3 {
  font-size: 4rem;
  font-family: "Serif", serif;
  font-weight: lighter;
  color: white;
}

/* Subtítulos del Carousel */
.subtituloCarusel1,
.subtituloCarusel2 {
  font-family: "Gentium Plus", serif;
}

.subtituloCarusel2 {
  margin-bottom: 10px;
}

/* Controles del Carousel */
.custom-carousel-control {
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev,
.carousel-control-next {
  /* Heredan de Bootstrap */
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-size: 100%, 100%;
}

/* Overlay con efecto brush stroke */
.brush-stroke-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 10;
  pointer-events: none;
}

.brush-stroke {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/brush-dec.png");
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}

/* ========================================
   6. SECCIÓN ABOUT
   ======================================== */
.About {
  margin-top: 150px;
}

.TituloAbout {
  font-family: "Serif", serif;
  font-size: 4rem;
  margin-bottom: 0px;
}

.AboutDesc {
  margin-bottom: 20px;
  color: #666;
}

.parrafoAbout {
  font-weight: lighter;
  margin-bottom: 5px;
  font-family: "Gentium Plus", serif;
  color: #b8860b;
}

.columnaTextoAbout {
  padding: 30px 20px;
  font-family: "Gentium Plus", serif;
}

/* Imagen container About */
.imagen-container-arriba {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.imagenAboutUs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Nueva sección acerca de (Chef Privado) */
#acerca-de-nosotros {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.texto-acerca {
  padding-right: 15px;
  padding-left: 15px;
}

.subtitulo {
  font-family: "Gentium Plus", serif;
  color: #b8860b;
  margin-bottom: 0.5rem;
}

.titulo {
  font-family: "Serif", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.separador {
  width: 50px;
  height: 2px;
  background-color: #b8860b;
  margin-bottom: 1rem;
}

.descripcion {
  font-family: "Gentium Plus", serif;
  color: #666;
  line-height: 1.6;
}

.imagen-container {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.imagen-acerca {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   7. SECCIÓN CHEFS
   ======================================== */
#meet-our-chefs {
  background-color: #f7f7f7;
}

.title {
  font-family: "Serif", serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.subtitle {
  font-family: "Gentium Plus", serif;
  color: #b8860b;
  margin-bottom: 0.5rem;
}

.separator {
  width: 50px;
  height: 0px;
  border-top: 2px dotted #b8860b;
  margin-bottom: 2rem;
}

.chef-card {
  border: 6px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
  height: 100%;
}

.chef-image,
.chef-image3 {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.chef-image3 {
  object-position: top;
}

.chef-title {
  font-family: "Gentium Plus", serif;
  font-weight: lighter;
  color: #b8860b;
  font-size: 1rem;
  margin: 0.5rem;
  text-align: center;
}

.chef-name {
  font-family: "Serif", serif;
  font-size: 1.5rem;
  color: #333;
  text-align: center;
}

.chef-description {
  font-family: "Sans-serif", sans-serif;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 0 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.chef-link {
  display: block;
  text-align: center;
  color: #b8860b;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 1rem;
}

.chef-link:hover {
  text-decoration: underline;
}

/* ========================================
   8. SECCIÓN SERVICIOS
   ======================================== */
.Services {
  margin-top: 150px;
}

.filaTituloServices .ServicesDesc {
  margin-bottom: 0px;
  font-weight: lighter;
  font-family: "Gentium Plus", serif;
  color: #b8860b;
}

.filaTituloServices h2 {
  font-family: "Serif", serif;
  font-size: 4rem;
}

.service-item h3 {
  margin-top: 10px;
  font-family: "Gentium Plus", serif;
}

.imgService {
  width: 100%;
  height: auto;
  border: 7px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Carousel móvil para servicios */
.tituloMovil {
  margin-top: 10px;
  font-family: "Gentium Plus", serif;
}

/* ========================================
   9. SECCIÓN PRECIOS
   ======================================== */
.Prices {
  background-color: #f7f7f7;
}

.columPrices {
  margin-top: 110px;
}

.textoPrice {
  font-size: 1rem;
  font-weight: lighter;
  margin-bottom: 5px;
  font-family: "Gentium Plus", serif;
  color: #c40000;
}

.TituloPrices {
  font-family: "Serif", serif;
  font-size: 3rem;
}

/* Botones de ofertas por zona */
.offer-button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.offer-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background-color: transparent;
  color: #333;
  border: 2px solid #333;
  border-radius: 0;
  font-family: "Serif", serif;
}

.offer-btn.active,
.offer-btn:hover {
  background-color: #333;
  color: #fff;
}

/* Menú de precios */
.menu-item {
  border-bottom: 1px solid #ddd;
}

.menu-item h3 {
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 10px;
}

.menu-item .price {
  font-family: "Gentium Plus", serif;
  font-weight: bold;
  margin-bottom: 10px;
}

.menu-item .description {
  color: #c40000;
  font-size: 0.9em;
}

/* ========================================
   10. SECCIÓN MENÚS
   ======================================== */
.main-dishes-section,
.main-dishes-section1 {
  padding: 60px 0;
}

.main-dishes-section1 {
  padding: 60px 20px;
}

.main-dishes-header {
  position: relative;
  text-align: center;
  margin-bottom: 70px;
}

.main-dishes-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.main-dishes-header h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: lighter;
  color: #fff;
  font-family: "Gentium Plus", serif;
}

.main-dishes-header p {
  position: absolute;
  top: 60%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: #fdf6ee;
}

/* Ítems del menú */
.menu-item-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.TituloMenu {
  font-family: "Gentium Plus", serif;
  font-weight: bolder;
  font-size: 1.1rem;
}

.ParrafoMenu {
  font-family: "Gentium Plus", serif;
}

/* ========================================
   11. SECCIÓN CÓMO FUNCIONA
   ======================================== */
.info-section {
  padding: 60px 20px;
}

.info-section h4 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 20px;
  font-family: "Gentium Plus", serif;
  text-transform: uppercase;
}

.info-section p {
  color: #666;
  margin-bottom: 30px;
  font-family: "Gentium Plus", serif;
}

.columanComoTrabajamos {
  /* Clase usada en HTML */
}

.info-divider {
  width: 2px;
  background-color: #333;
}

.payment-icon {
  font-size: 1.3rem;
  color: #495057;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.payment-icon:hover {
  color: #c40000;
}

.puntoSepadorInfo {
  width: 50px;
  height: 0px;
  border-top: 2px dotted #c40000;
  margin-bottom: 2px;
}

/* ========================================
   12. IMAGEN INTERMEDIA
   ======================================== */
#ImgIntermedia {
  background-image: url(/img/burgers-1839090_1920.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========================================
   13. SECCIÓN CONTACTO / FORMULARIO
   ======================================== */
#contact {
  /* Heredada de container-fluid */
}

.contac-form {
  padding: 50px 80px;
  background-image: url(/img/PATRON.jpg);
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Serif", serif;
  color: #fff;
}

#contact .form-control,
#contact .form-select {
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  padding-left: 0;
  padding-bottom: 20px;
  background-color: transparent;
  color: #fff;
  font-family: "Serif", serif;
  appearance: none;
}

#contact .form-control::placeholder,
#contact .form-select {
  color: #fff;
  font-family: "Serif", serif;
}

#contact .form-control:focus {
  background: transparent;
  color: #fff;
  font-family: "Gentium Plus", serif;
}

.form-select option {
  background-color: #ffffff;
  color: #333;
  font-family: "Gentium Plus", serif;
  padding: 10px;
}

#contact .form-select:focus {
  color: #fff;
  font-family: "Gentium Plus", serif;
}

.custom-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFFFFF' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 12px;
  padding-right: 2.5rem;
  color: #fff;
}

#contact textarea.form-control {
  height: 100px;
  resize: vertical;
}

.contact-send {
  /* Verde/positivo */
  color: #28a745;
  padding: 10px;
  margin-bottom: 20px;
}

.contact-error {
  /* Rojo/error */
  color: #c40000;
  padding: 10px;
  margin-bottom: 20px;
}

/* ========================================
   14. FOOTER
   ======================================== */
.footer {
  background-color: #111;
}

.footerTitulo1 {
  font-family: "Galada", cursive;
  color: #fff;
  font-size: 2rem;
}

.footerTitulo2 {
  font-family: "Gentium Plus", serif;
  font-weight: bold;
  color: #fff;
}

.footerParrafo {
  font-family: "Gentium Plus", serif;
  color: #fff;
  font-size: 0.8rem;
}

.listadoContacto {
  color: #fff;
  font-family: "Gentium Plus", serif;
}

.parrafoCopyR {
  color: #fff;
  font-family: "Gentium Plus", serif;
}

.footer a {
  text-decoration: none;
  font-family: "Gentium Plus", serif;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .list-unstyled li {
  margin-bottom: 0.5rem;
}

/* ========================================
   15. NOTIFICACIONES Y GLOBALES
   ======================================== */
.notification {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #333;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  align-items: center;
  min-width: 300px;
}

.notification-content {
  display: flex;
  align-items: center;
}

.notification i {
  color: #c40000;
  font-size: 24px;
  margin-right: 15px;
}

.notification p {
  margin: 0;
  font-size: 16px;
}

.notification.show {
  top: 20px;
}

/* Botón WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #111;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: #ff0000;
  transform: scale(1.1);
}

.whatsapp-btn i {
  font-size: 30px;
}

/* ========================================
   16. ANIMACIONES
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-caption h1,
.carousel-caption p {
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

.carousel-caption h1 {
  animation-delay: 0.2s;
}

.carousel-caption p:first-of-type {
  animation-delay: 0.4s;
}

.carousel-caption p:last-of-type {
  animation-delay: 0.6s;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.carousel-item img {
  animation: zoom 10s linear infinite;
  transition: transform 0.3s ease;
}

/* ========================================
   17. RESPONSIVE DESIGN
   ======================================== */

/* Móvil pequeño: hasta 480px */
@media only screen and (max-width: 480px) {
  .tituloCarusel1,
  .tituloCarusel2,
  .tituloCarusel3 {
    font-size: 2.9rem !important;
    margin-bottom: 0px;
    margin-top: 5px;
  }

  .subtituloCarusel1,
  .subtituloCarusel2 {
    font-size: 0.4rem;
  }

  .filaTituloServices h2 {
    font-size: 2.2rem;
  }
}

/* Móvil: 481px - 600px */
@media only screen and (max-width: 600px) {
  /* Navbar */
  .custom-navbar {
    background-color: #111;
    height: 70px;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .custom-btn {
    font-size: 0.8rem;
  }

  /* Carousel */
  .carousel {
    height: 500px;
  }

  .carousel-caption {
    top: 55%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
  }

  .custom-carousel-control {
    width: 3%;
    top: 55%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .tituloCarusel1,
  .tituloCarusel2,
  .tituloCarusel3 {
    font-size: 2.6rem;
    margin-bottom: 0px;
    margin-top: 5px;
  }

  .subtituloCarusel1,
  .subtituloCarusel2 {
    font-size: 0.5rem;
    margin-bottom: 0px;
  }

  /* Secciones */
  .About,
  .Services {
    margin-top: 30px;
  }

  .TituloAbout {
    font-size: 2rem;
  }

  .filaTituloServices h2 {
    font-size: 2rem;
  }

  .ServicesDesc {
    font-size: 1rem;
  }

  .AboutDesc {
    font-size: 1rem;
    text-align: justify;
  }

  .btnAbout,
  .btnServicio {
    margin-top: 0px;
    margin-bottom: 10px;
  }

  /* Precios */
  .columPrices {
    margin-top: 30px;
  }

  .offer-btn {
    padding: 10px 20px;
    font-size: 0.7rem;
  }

  .TituloPrices {
    font-size: 2rem;
  }

  /* Contacto */
  .contac-form {
    padding: 50px 25px;
  }

  #contact h2 {
    font-size: 2rem;
  }

  #contact .col-md-6:first-child {
    margin-bottom: 40px;
  }

  /* Menús */
  .main-dishes-section,
  .main-dishes-section1 {
    padding: 60px 20px;
    margin-top: 30px;
  }

  .main-dishes-header h2 {
    font-size: 1.8rem;
  }

  .main-dishes-header p {
    font-size: 0.7rem;
  }

  .TituloMenu {
    font-size: 1.2rem;
  }

  /* Cómo funciona */
  .info-section {
    padding: 50px 20px;
    margin-top: 30px;
  }

  .columanComoTrabajamos {
    text-align: center;
  }

  .info-divider {
    width: 100%;
    height: 1px;
    margin: 30px 0;
  }

  .info-section h4 {
    font-size: 1.2rem;
  }

  /* Imagen intermedia */
  #ImgIntermedia {
    background-attachment: scroll;
    padding: 50px 0;
  }

  /* Footer */
  .footerTitulo1,
  .footerTitulo2 {
    font-size: 2rem;
  }

  .footer .col-md-3 {
    padding: 0px 50px 0px 25px;
  }

  /* General */
  .columnaTextoAbout {
    padding: 0px 10px;
  }

  #acerca-de-nosotros {
    padding: 80px 20px;
  }

  .texto-acerca {
    margin-bottom: 2rem;
  }

  .titulo {
    font-size: 2rem;
  }

  .imagen-container {
    padding-top: 100%;
  }
}

/* Tablet: 601px - 991px */
@media only screen and (min-width: 600px) and (max-width: 991px) {
  /* Navbar */
  .custom-navbar {
    background-color: #111;
    height: 80px;
  }

  .navbar-brand {
    font-size: 2rem;
  }

  /* Carousel */
  .tituloCarusel1,
  .tituloCarusel2 {
    font-size: 5rem;
  }

  .tituloCarusel3 {
    font-size: 4.5rem;
  }

  .subtituloCarusel1,
  .subtituloCarusel2 {
    font-size: 0.8rem;
  }

  .custom-carousel-control {
    width: 5%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }

  /* Secciones */
  .About,
  .Services {
    margin-top: 90px;
  }

  .TituloAbout {
    font-size: 3rem;
  }

  .AboutDesc {
    font-size: 1rem;
  }

  .filaTituloServices h2 {
    font-size: 3rem;
  }

  .btnServicio {
    margin-bottom: 10px;
  }

  /* General */
  .columnaTextoAbout {
    padding: 0px 10px;
  }

  #acerca-de-nosotros {
    padding: 80px 0px;
  }

  .titulo {
    font-size: 2.5rem;
    font-weight: bold;
  }
}

/* Desktop: 992px - 1199px */
@media only screen and (min-width: 992px) {
  /* Navbar */
  .custom-navbar {
    background: transparent;
    height: auto;
  }

  /* Carousel */
  .tituloCarusel1,
  .tituloCarusel2,
  .tituloCarusel3 {
    font-size: 6rem;
  }

  .subtituloCarusel1,
  .subtituloCarusel2 {
    font-size: 1rem;
  }

  .custom-carousel-control {
    width: 5%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }

  /* Secciones */
  .About,
  .Services {
    margin-top: 110px;
  }

  .TituloAbout {
    font-size: 2.3rem;
  }

  .AboutDesc {
    font-size: 0.8rem;
    margin-bottom: 0px;
  }

  .btnAbout {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .filaTituloServices h2 {
    font-size: 2.3rem;
  }

  /* General */
  #acerca-de-nosotros {
    padding: 80px 40px;
  }

  .titulo {
    font-size: 2.5rem;
  }
}

/* Desktop grande: 1200px+ */
@media only screen and (min-width: 1200px) {
  /* Carousel */
  .tituloCarusel1,
  .tituloCarusel2,
  .tituloCarusel3 {
    font-size: 7rem;
  }

  .subtituloCarusel1,
  .subtituloCarusel2 {
    font-size: 1.3rem;
  }

  .custom-carousel-control {
    width: 5%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }

  /* Secciones */
  .filaTituloServices h2 {
    font-size: 3rem;
  }

  .TituloAbout {
    font-size: 3rem;
  }

  .AboutDesc {
    font-size: 1rem;
    line-height: 1.9;
  }

  /* WhatsApp btn */
  .whatsapp-btn {
    right: calc((100% - 1440px) / 2 + 20px);
  }
}

/* ========================================
   FIN DEL CSS REFACTORIZADO
   ======================================== */