header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgb(10, 177, 171); /* Color sólido (ajusta al tuyo) */
    margin: 0; /* Elimina márgenes */
    padding: 0; /* Elimina relleno interno */
    border: none; /* Elimina bordes si existen */
}
:root{
    --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
    --item1-filter: blur(30px);
    --item1-zIndex: 11;
    --item1-opacity: 0;

    --item2-transform: translateX(0);
    --item2-filter: blur(0px);
    --item2-zIndex: 10;
    --item2-opacity: 1;

    --item3-transform: translate(50%,10%) scale(0.8);
    --item3-filter: blur(10px);
    --item3-zIndex: 9;
    --item3-opacity: 1;

    --item4-transform: translate(90%,20%) scale(0.5);
    --item4-filter: blur(30px);
    --item4-zIndex: 8;
    --item4-opacity: 1;
    
    --item5-transform: translate(120%,30%) scale(0.3);
    --item5-filter: blur(40px);
    --item5-zIndex: 7;
    --item5-opacity: 0;

    --item6-transform: translate(150%, 40%) scale(0.2); /* Posición y tamaño */
    --item6-filter: blur(50px); /* Efecto de desenfoque */
    --item6-zIndex: 6; /* Capa de profundidad */
    --item6-opacity: 0; /* Visibilidad (0 = invisible, 1 = visible) */
}

.menuPrincipal{
 display: flex;
 justify-content: space-around;
 background-color: rgba(10, 177, 171, 1); /* El último valor "1" elimina transparencia */
 height: 110px;
}

.menu{
    margin-top: 50px;
    text-decoration: none;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 20px;
}
.menu:hover{
    color: rgb(255, 148, 60);
   
}
.menu_agendar{
    color:  rgb(114,39,34);
    background-color: #ECE5D5 ;
    margin-top: 40px;
    text-decoration: none;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    padding: 10px;
    height: 50px;
    border-radius: 20px;
}
.menu_agendar:hover{
    color: rgb(255, 148, 60);
}

.logo{
    width: 150px;
    margin-top: 2px;
    border-radius: 80px;
}
.carousel{
    height: 580px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    
}
.carousel .list{
    position: absolute;
    top: 0;
    width: 1140px;
    max-width: 100%;
    left: 50%;
    transform:  translateX(-50%);
    height: 80%;

}
.carousel .list .item{
    position: absolute;
    left: 0;
    top: 0%;
    height: 100%;
    font-size: 20px;
    width: 70%;
    /* transition: left 0.5s, opacity 0.5s, width 0.5s; */
}
.carousel .list .item img{
    width: 50%;
    border-radius: 55%;
    position:absolute;
    right: 0;
    top: 50%;
    margin-top: 100px;
    transform: translateY(-50%);
}
.carousel .list .item .intro{
    opacity: 0;
    pointer-events: none;
    /* position: absolute;
    top: 60%;
    left: 5%;
    transform: translateY(-50%);
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 15px
    opacity: 0;
    pointer-events: none; */
}
.carousel .list .item:nth-child(2) .intro{
    opacity: 1;
    pointer-events: auto;
    width: 400px;
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    transition: opacity 0.5s;
}
.carousel .list .item:nth-child(n +6){
    opacity: 0;
    pointer-events: none;
}
.carousel .list .item:nth-child(2){
    transform: translate(0, 0);
    filter: blur(0);
    z-index: 10;
    opacity: 1;
}
.carousel .list .item:nth-child(1){
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    z-index: var(--item1-zIndex);
    opacity: var(--item1-opacity);
    pointer-events: none;
}
.carousel .list .item:nth-child(3){
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    z-index: var(--item3-zIndex);
}
.carousel .list .item:nth-child(4){
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    z-index: var(--item4-zIndex);
}
.carousel .list .item:nth-child(5){
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
    pointer-events: none;
}
.arrows{
    position: absolute;
    bottom: 10px;
    width: 1140px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
}
#prev,
#next{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: monospace;
    border: 1px solid #5555;
    font-size: large;
    bottom: 20%;
    left: 10%;
}
#next{
    left: unset;
    right: 10%;
}
#back{
    position: absolute;
    z-index: 100;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-bottom: 1px solid #555;
    font-family: Poppins;
    font-weight: bold;
    letter-spacing: 3px;
    background-color: transparent;
    padding: 10px;
    /* opacity: 0; */
    transition: opacity 0.5s;
}
.carousel .list .item .intro .title {
    font-size: 1.5rem; /* Reduje de 2em a 1.5rem */
    line-height: 1.3; /* Mejor espaciado */
    margin-bottom: 15px; /* Espacio antes del topic */
}

.carousel .list .item .intro .topic {
    font-size: 2.5rem; /* Reduje de 4em a 2.5rem */
    font-weight: 500;
    line-height: 1.2; /* Mejor espaciado entre líneas */
}
.carousel .list .item .intro .des{
    font-size: 1 rem;
    color: #5559;
}
.carousel .list .item .intro .vermas{
    font-family: Poppins;
    margin-top: 1.2em;
    padding: 5px 0;
    border: none;
    border-bottom: 1px solid #555;
    background-color: transparent;
    font-weight: bold;
    letter-spacing: 3px;
    transition: "background" 0.5s;
}
.carousel .list .item .intro .vermas:hover{
    background: #eee;
}
.carousel .list .item:nth-child(2) .intro .title,
.carousel .list .item:nth-child(2) .intro .topic,
.carousel .list .item:nth-child(2) .intro .des,
.carousel .list .item:nth-child(2) .intro .vermas{
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
@keyframes showContent{
    from{
        transform: translateY(-30px);
        filter: blur(10px);
    }to{
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}
.carousel .list .item:nth-child(2) .intro .topic{
    animation-delay: 1.2s;
}
.carousel .list .item:nth-child(2) .intro .des{
    animation-delay: 1.4s;
}
.carousel .list .item:nth-child(2) .intro .vermas{
    animation-delay: 1.6s;
}

/* next click */
.carousel.next .item:nth-child(1){
    animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}
@keyframes transformFromPosition2{
    from{
        transform: var(--item2-transform);
        filter: var(--item2-filter);
        opacity: var(--item2-opacity);
    }
}
.carousel.next .item:nth-child(2){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
@keyframes transformFromPosition3{
    from{
        transform: var(--item3-transform);
        filter: var(--item3-filter);
        opacity: var(--item3-opacity);
    }
}
.carousel.next .item:nth-child(3){
    animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}
@keyframes transformFromPosition4{
    from{
        transform: var(--item4-transform);
        filter: var(--item4-filter);
        opacity: var(--item4-opacity);
    }
}
.carousel.next .item:nth-child(4){
    animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition5{
    from{
        transform: var(--item5-transform);
        filter: var(--item5-filter);
        opacity: var(--item5-opacity);
    }
}
.carousel.prev .list .item:nth-child(5){
    animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(4){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(3){
    animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(2){
    animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition1{
    from{
        transform: var(--item1-transform);
        filter: var(--item1-filter);
        opacity: var(--item1-opacity);        
    }
}
.carousel::before{
    width: 500px;
    height: 300px;
    content: '';
    background: rgb(114,39,34);
    background: linear-gradient(90deg, rgba(114,39,34,1) 0%, rgba(255,148,60,1) 35%, rgba(236,229,213,1) 100%);
    position: absolute;
    z-index: -1;
    border-radius: 20% 30% 80% 10%;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    transition: 1s;

}

.carousel .list .item:nth-child(6) {
    transform: var(--item6-transform);
    filter: var(--item6-filter);
    z-index: var(--item6-zIndex);
    opacity: var(--item6-opacity);
}
.carousel.showDetail::before{
    transform: translate(-100%, -50%) rotate(90deg);
    filter: blur(130px);
    
}

.section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 100px;
  }
  .container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .main-title{
    font-size: 2em;
    font-family: "Barlow Condensed";
   color: #FF943C;
  }
 .hojita{
  width: 80px;
  
 }
 
  .content{
    position: relative;
    width: 1150px;
    display: flex;
    justify-content: center;
    align-items: center;

  }
  .content .image{
    position: relative;
    width: 900px;
    height: 400px;
    overflow: hidden;

  }
  .content .image img{
    z-index: 111;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .content .text-box{
    z-index: 222;
    background: #FF943C;
    backdrop-filter: blur(20px);
    padding: 40px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translate(-80px,50px);
  }
  .content .text-box .subtitulo{
    font-size: 2em;
    margin-bottom: 10px;
    font-family: "Gentium Book Plus", serif;
    color: white;
  }
  .parrafo{
    color: white;
    font-family: "Gentium Book Plus", serif;
    font-size: 1.1em;
  }
  .section-title{
    font-size: 3em;
    margin-bottom: 80px;
    font-family: "Montserrat";
    color: #FF943C;
  }
  .info-title{
    font-size: 1.8em;
    margin-bottom: 10px;
    font-family: "Gentium Book Plus", serif;
  }
  .info{
    width: 700px;
    margin-left: 50px;
    font-family: "Gentium Book Plus", serif;
  }
  .sec-01{
    margin-top: 50px;
    height: 650px;

  }
  .separacion{
    background-color:#ECE5D5;
    text-align: center;
    color: rgb(10, 107, 112) ;
    font-family: "Montserrat";
    font-size: 40px;
    padding: 10px;
    margin-bottom: 50px;
  }
  .somos{
    width: 70px;
  border-radius: 35px;
  font-family: "Montserrat";
  }
 /* Contenedor principal */
.info-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    background-color: #ECE5D5;
    color: rgb(10, 107, 112);
    padding: 30px 20px;
    margin-top: 20px;
    font-family: "Montserrat", sans-serif;
    flex-wrap: wrap; /* Para responsive */
}

/* Columnas */
.info-column {
    text-align: center;
    padding: 0 20px;
    flex: 1;
    min-width: 200px; /* Evita que se compriman demasiado */
}

/* Separadores */
.separator {
    width: 1px;
    background-color: rgba(10, 107, 112, 0.3);
    margin: 0 10px;
    height: 100px;
    align-self: center;
}

/* Títulos */
.info-column h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #722722;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Iconos */
.info-icon {
    width: 24px;
    height: 24px;
}

/* Texto destacado */
.info-column span {
    font-weight: bold;
    color: #FF943C;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .separator {
        width: 80%;
        height: 1px;
        margin: 10px 0;
    }
    .info-column {
        min-width: 100%;
    }
}
.formularioconten {
  background-color: #ECE5D5;
  padding: 40px 0;
  margin-bottom: 30px;
}

.formulario {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    
}
.formtext{
    text-align: center;
    color:rgb(10, 107, 112) ;
    font-family: "Boogaloo", sans-serif;
    font-size: 40px;

}
.maplefooter{
    width: 90px;
}
.footer{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    background-color: rgb(114,39,34);
    color: white;
    font-family: "Montserrat";
}
.derechos{
    width: 100%;
}
.hoja{
    width: 70px;
   }

   @media (min-width: 768px) {
    .desktop-only {
        display: block; /* Muestra en pantallas de escritorio */
    }
    .mobile-only {
        display: none; /* Oculta en pantallas de escritorio */
    }
}

@media (max-width: 767px) {
    .desktop-only {
        display: none; /* Oculta en dispositivos móviles */
    }
    .mobile{
      display: flex;
    }
    .mobile-only{
        justify-content:center;
    }
    .mobile-block{
      padding: 20px;
    }
   .img-menu{
    width: 50px;
   }
   .logo_movil{
        width: 150px;
        border-radius: 100px;
        align-items: center;

   }
   .contentlogo{
            display: flex;
            background-color:  rgb(10, 177, 171);
            width: 100%;
            height: 130px;
            justify-content: center;
   }
   .btn-mobile{
    text-decoration: none;
    font-size: 28px;
    font-family: "Boogaloo", serif;
    color:  rgb(10, 177, 171);
   }

   .brack{
    width: 80px;
   }
   .maplevino{
    width: 50px;
    border-radius: 25px;
   }
   .menumv{
    font-size: 25px;
    text-decoration: none;
    font-family: "Bebas Neue", sans-serif;
    color: rgb(10,107,112) ;

   }
   .menumv:hover, .menuv:active{
        color: #722722;
   }
   .tratamientoMobile{
    text-decoration: none;
    font-family: "Bebas Neue", sans-serif;
    color: rgb(10,107,112) ;
   }
      h1{
        margin-top: -10px;
        font-size: 30px;
        font-family: "Boogaloo", sans-serif;
       color: #FF943C;
       text-align: center;
       letter-spacing: 2px;

      } 
      
    .separador{
       background-color:#ECE5D5;
       width: 100%;
       height: 80px;
       margin-top: 10px;
       text-align: center;
       font-family:'Dancing Script',cursive;
       color:rgb(10, 107, 112) ;
       font-size: 30px;
    }
    
    .textbienve{
        background-color: #FF943C;
        color: #ECE5D5;
        font-family: "Montserrat";
        font-size: 25px;
    }
    .imgmov{
        width: 100%;
    }
    .horariom{
        text-align: center;
        width: 100%;
        background-color: #722722;
        color: #ECE5D5;
    }
    .derechosmo{
        width: 100%;
        background-color: #722722;
        color: #ECE5D5;
    }
    .title-mobile{
      justify-content:center;
    }
}
.sucursal {
    margin: 40px auto;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

.section-title.text-center {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: "Montserrat", sans-serif;
    color: #FF943C;
    font-size: 2.5em;
}

.mapa {
    margin: 10px auto;
    width: 90%;
    max-width: 1000px;
}

.mapa iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title.text-center {
        font-size: 1.8em;
        flex-direction: column;
        gap: 5px;
    }
    
    .mapa iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .mapa iframe {
        height: 250px;
    }
}
/* Añade esto al final del archivo */
.mapa-unificado {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.mapa-unificado iframe {
  width: 100%;
  height: 450px; /* Mismo alto que en home */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .mapa-unificado {
    width: 95%;
  }
  .mapa-unificado iframe {
    height: 350px; /* Ajuste mobile idéntico */
  }
}
/* ================================== */
/* ESTILOS PARA MAPA IDÉNTICO AL HOME */
/* ================================== */
.contenedor-mapa-identico {
  width: 87.5%; /* Ajuste preciso para igualar el home */
  margin: 25px auto;
  padding: 0;
  box-sizing: border-box;
}

.contenedor-mapa-identico iframe {
  width: 100%;
  height: 487px; /* Altura exacta del home */
  border: 1px solid #e0e0e0; /* Borde sutil como en home */
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Responsive idéntico */
@media (max-width: 1024px) {
  .contenedor-mapa-identico {
    width: 95%;
  }
  .contenedor-mapa-identico iframe {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .contenedor-mapa-identico iframe {
    height: 380px;
    border-radius: 8px;
  }
}
/* === AJUSTES PARA VIÑETAS DE "NUESTRA MISIÓN" === */
/* Asegura que el contenedor principal no tenga sangría */
.Tnosotros .infonosotros {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Estilos para las viñetas (versión desktop) */
.Tnosotros .infonosotros br + br + strong + br ~ br {
  display: block;
  position: relative;
  padding-left: 20px;
  text-indent: -20px;
  margin-bottom: 8px;
}

.Tnosotros .infonosotros br + br + strong + br ~ br::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2a5a78;
  font-weight: bold;
}

/* Versión móvil */
@media (max-width: 768px) {
  .textbienve {
    padding: 30px !important;
  }
  .textbienve br + strong + br ~ br {
    display: block;
    padding-left: 20px;
    text-indent: -20px;
  }
}
/* ===== SOLUCIÓN DEFINITIVA PARA NUESTRA MISIÓN ===== */
/* Contenedor principal - elimina sangrías no deseadas */
.Tnosotros .infonosotros {
  padding-left: 0 !important;
  margin-left: 0 !important;
  line-height: 1.6;
}

/* Estilo para las líneas de la misión */
.infonosotros .linea-mision {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

/* Viñetas con guiones */
.infonosotros .linea-mision::before {
  content: "-";
  position: absolute;
  left: 5px;
  color: #2a5a78;
  font-weight: bold;
}

/* Versión móvil */
@media (max-width: 768px) {
  .textbienve .linea-mision {
    padding-left: 25px;
  }
}
/* ===== SOLUCIÓN PARA FONDO EXTENDIDO ===== */
.formulario-fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #ECE5D5; /* Color de fondo igual al original */
  padding: 30px 0;
  overflow: hidden; /* Previene scroll horizontal */
}

/* Mantén todos tus estilos existentes del formulario */
.formularioconten {
  max-width: 1200px; /* Igual al ancho de tu contenido principal */
  margin: 0 auto;
}

.formulario {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 80%;
  margin: 20px auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive (igual al original) */
@media (max-width: 992px) {
  .formulario {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .formulario {
    width: 95%;
    padding: 20px;
  }
  .formtext {
    font-size: 1.5rem;
  }
}
/* ===== FORMULARIO UNIFICADO ===== */
/* Contenedor principal del fondo */
.formulario-fullwidth-bg {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #ECE5D5;
  padding: 40px 0;
  overflow: hidden;
}

/* Contenedor del contenido */
.formularioconten {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Estilos del formulario (igual en ambas páginas) */
.formulario {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 60%;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Texto superior */
.formtext {
  text-align: center;
  color: rgb(10, 107, 112);
  font-family: "Boogaloo", sans-serif;
  font-size: 40px;
  margin-bottom: 20px;
}

/* Campos del formulario */
.form-control {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Gentium Book Plus", serif;
  font-size: 1rem;
}

/* Botón de enviar */
.btn-enviar {
  background-color: #FF943C;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  transition: background-color 0.3s;
}

.btn-enviar:hover {
  background-color: #e07d2a;
}

/* Decoración de hojas */
.hoja {
  width: 50px;
  vertical-align: middle;
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .formulario {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .formulario {
    width: 90%;
    padding: 25px;
  }
  
  .formtext {
    font-size: 32px;
  }
  
  .hoja {
    width: 40px;
  }
}

@media (max-width: 576px) {
  .formtext {
    font-size: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hoja {
    margin: 5px 0;
  }
  
  .formulario {
    padding: 20px;
  }
  /* ===== ESTILOS UNIFICADOS PARA FORMULARIOS ===== */
.formulario-fullwidth {
  background-color: #ECE5D5;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 40px 0;
  overflow: hidden;
}

.formularioconten {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.formulario {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 60%;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.formtext {
  text-align: center;
  color: rgb(10, 107, 112);
  font-family: "Boogaloo", sans-serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Gentium Book Plus", serif;
  font-size: 1rem;
}

.btn {
  background-color: #FF943C;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e07d2a;
}

.hoja {
  width: 50px;
  vertical-align: middle;
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .formulario {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .formulario {
    width: 90%;
    padding: 25px;
  }
  
  .formtext {
    font-size: 32px;
  }
  
  .hoja {
    width: 40px;
  }
}

@media (max-width: 576px) {
  .formtext {
    font-size: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hoja {
    margin: 5px 0;
  }
  
  .formulario {
    padding: 20px;
  }
  
  .form-control {
    padding: 10px;
  }
}
}
/* ----- CONTENEDOR PRINCIPAL ----- */
.formularioconten {
  background-color: #ECE5D5;
  padding: 40px 0;
  margin-bottom: 30px;
  text-align: center;
}

/* ----- FORMULARIO ----- */
.formulario {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ----- TEXTO SUPERIOR ----- */
.formtext {
  color: rgb(10, 107, 112);
  font-family: "Boogaloo", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ----- CAMPOS DEL FORMULARIO ----- */
.form-control {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

/* ----- BOTÓN ----- */
.btn {
  background-color: #FF943C;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

/* ----- HOJAS DECORATIVAS ----- */
.hoja {
  width: 50px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .formulario {
    width: 90%;
    padding: 20px;
  }
  .formtext {
    font-size: 1.8rem;
    flex-direction: column;
  }
  .hoja {
    margin: 5px 0;
  }
}