:root {
  --primary-green: #2e7d32;
  --light-green: #606939;
  --dark-green: #c1e426;
  --light-gray: #a9be3d;
  --medium-gray: #f5f5f5;
  --dark-gray: #616161;
  --black: #010101;
  --light-green: #6069399c;
  --darker-gray: #161613;
  --dirt-green: #474d29;
  --green-gray: #010101;
  --green-primary2: #a0b924;
}

html {

  font-size: 90.5%;
  box-sizing: border-box;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;


  /* Habilitar el desplazamiento vertical */
}

#map-section,
#basic-info,
#services,
#contact,
#star,
.top-header {
  scroll-snap-type: center;
  scroll-snap-stop: always;



}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;

  color: #333;
  background: linear-gradient(180deg,
      #ffffff 0%,
      #d4ee52 45%,
      #b7cf5c 65%,
      #9fb144 100%);
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1 {

  font-size: 3.8rem;
}

h2 {

  font-size: 2.0rem;
}

h3 {

  font-size: 1.8rem;
}

p {

  line-height: 2;

}



.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}

.grid-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(74, 123, 157, 0.15);
  padding: 30px 25px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 5px solid #606939;
}

.grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(74, 123, 157, 0.2);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: white;
}

.item-1 .icon-wrapper {
  background: linear-gradient(135deg, #4a7b9d 0%, #2c3e50 100%);
}

.item-2 .icon-wrapper {
  background: linear-gradient(135deg, #d46a6a 0%, #aa4a4a 100%);
}

.item-3 .icon-wrapper {
  background: linear-gradient(135deg, #57a357 0%, #3d753d 100%);
}

.item-4 .icon-wrapper {
  background: linear-gradient(135deg, #e99d42 0%, #c47d2b 100%);
}

.grid-item strong {
  color: #131a22;
  font-size: 1.3em;
  margin-bottom: 15px;
  display: block;
}

.grid-item li {
  list-style-type: none;
  margin-bottom: 15px;
}

.grid-item p {
  color: #4a6572;
  line-height: 1.6;
}

.highlight {
  color: #4a7b9d;
  font-weight: 600;
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 15px;
  }

  .grid-item {
    padding: 25px 20px;
  }

  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.8rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }
}


.theme-toggle {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: inherit;
  /* Hereda el color del texto del tema */
}

.theme-toggle:hover {
  transform: rotate(15deg);
  background-color: rgba(0, 0, 0, 0.05);
}

.theme-toggle:active {
  transform: scale(0.95);
}

[data-bs-theme="dark"] .theme-toggle:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.theme-icon {
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 1.5rem;
}

/* Animación suave para el cambio de icono */
.theme-icon.fade-out {
  opacity: 0;
  transform: rotate(90deg);
}

.modal-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.top-header {
  background-color: #f5f5f5;
  padding: 8px 0;
  font-size: 0.9rem;
}

.social-icon {
  color: #6c757d;
  margin-left: 15px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #0d6efd;
}

.navbar {
  border-top: 1px solid #a8b36f;
  background-color: transparent !important;
  background-image: linear-gradient(to bottom, #bdd256d7, #ffffff75);
  backdrop-filter: blur(6px);
  /* Difumina el fondo si hay contenido detrás */
  -webkit-backdrop-filter: blur(6px);
  /* Para compatibilidad con Safari */
  min-height: 10px;
  padding: 0.1rem 0rem;
  box-shadow: -1px 3px 3px 0px rgb(0 0 0 / 32%), 1px 0px 4px 0px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  /* Asegura que quede encima del contenido */
}


.header-container {
  max-width: 1200px;
  /* Ajusta según el ancho de tu contenido */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.navbar-brand,
.nav-link {
  color: #000000;
  margin: 0 10px;
  position: relative;
  margin: 0 10px;
  position: relative;
}

.nav-link:hover {
  color: var(--green-gray) !important;

}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--light-green);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
  background: linear-gradient(90deg, transparent, #a8b36f, transparent);
}

.nav-link:hover:after {
  width: 100%;
}

/* Define la animación de entrada */
@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Opcional: Para asegurar que la animación solo se ejecute una vez al cargar */
.logo-entrada {
  animation-fill-mode: both;
}




.hero-section {

  background-size: cover;
  background-position: top;
  color: white;
  width: 100%;
  height: 85vh;
  overflow: hidden;


  /* For larger screens */
  @media (min-width: 768px) {
    /* Adjust breakpoint as needed */
    background-position: 80% 20%;
    /* Horizontal 80%, Vertical 20% */
  }
}

.section-title {
  color: var(--darker-gray);
  background-color: #ddff536b;
  padding: 5px 15px;
  margin-bottom: 40px;
  box-shadow: inset 0px -20px 20px 0px #0808082c;
  border: 2px solid var(--green-gray);
  clip-path: polygon(1% 0%,
      100% -1%,
      89% 97%,
      12% 97%);
  position: relative;
  /* Necesario para los pseudo-elementos */
  overflow: hidden;
  /* Para contener las líneas internas */
}

/* Línea fina superior */
.section-title::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 1px;
  background: linear-gradient(125deg, transparent, #313421, transparent);
  clip-path: inherit;
}

.transparent-frame {
  border: 1px solid rgba(0, 0, 0, 0.2);
  /* Borde muy sutil */
  background-color: rgba(255, 255, 255, 0.308);
  /* Fondo semi-transparente */
  padding: 20px;
  margin: 20px 0;
  border-radius: 0;
  /* Cuadrado perfecto (sin esquinas redondeadas) */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* Sombra muy sutil */
  backdrop-filter: blur(2px);
  /* Efecto de vidrio esmerilado (opcional) */
}

.transparent-frame b {
  font-weight: 600;
  /* Hacemos el texto un poco más grueso */
  color: #333;
  /* Color de texto oscuro para mejor legibilidad */
  line-height: 1.5;
  /* Espaciado entre líneas */
}



/* Línea fina inferior */
.section-title::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 2px;
  right: 2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00000020, transparent);
  clip-path: inherit;
}

/* Líneas verticales (opcional) */
.section-title {
  background-image:
    linear-gradient(90deg, #00000010 1px, transparent 1px),
    linear-gradient(90deg, #00000010 1px, transparent 1px);
  background-position: left 5px, right 5px;
  background-size: 1px 80%;
  background-repeat: no-repeat;
}


/* Para corregir la inclinación del texto */
.section-title>* {
  transform: skew(10deg);
  /* Contrarresta la inclinación */
  display: inline-block;
}




.slider-container {
  display: flex;
  position: relative;
  width: 100%;
  height: 110%;
  max-width: 2200px;
  /* Máximo ancho (opcional) */
  margin: 0 auto;
  /* Centrar el slider */
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);

}

.slider-container img {
  width: 100%;
  /* La imagen ocupa el 100% del ancho del contenedor */
  height: 100px;
  /* Altura fija (ajusta según necesidad) */
  object-fit: cover;
  /* Ajusta la imagen sin distorsionar (recorta excesos) */
  object-position: center;
  /* Enfoca el centro de la imagen */
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-attachment: scroll;
  /* Esto centrará la imagen */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


@media (max-width: 1024px) {

  html {

    font-size: 77.5%;
  }

  .slide {
    height: 90vh;
    /* Altura reducida para tablets */
    background-size: cover;

    /* Elimina efecto parallax en dispositivos */
    /*background-size: 205% 100%;*/


    background-position: center top;
    background-attachment: scroll;
    background-repeat: no-repeat;


    /* Eliminado: background-size: 340% 100% (causaba problemas) */

    /* Optimizaciones adicionales */
    position: relative;
    overflow: hidden;

  }

  video {
    display: none;


  }

  .pdf-container {
    max-height: 21rem;

  }
  





}

/* Ajustes para móviles (hasta 767px) */
@media (max-width: 767px) {


  html {
    font-size: 90.5%;
  }

  .slide {
    height: 100vh;
    /* Altura más compacta para móviles */
    /* Opción alternativa para mostrar imagen completa sin recortar */
    /* background-size: contain;
    background-color: #000;  Fondo para areas no cubiertas */

    background-size: cover;
    /* o 'cover' dependiendo del efecto que busques */
    background-position: center top;
    background-attachment: scroll;
    /*background-size: 320% 100%;*/


    background-repeat: no-repeat;


    /* Eliminado: background-size: 340% 100% (causaba problemas) */

    /* Optimizaciones adicionales */
    position: relative;
    overflow: hidden;


  }

  video {

    display: none;

  }



  .pdf-container {
    max-height: 20rem;


  }
 






}

/* Ajuste extra para móviles en orientación horizontal */
@media (max-width: 767px) and (orientation: landscape) {
  .slide {
    height: 80vh;
    /* Mayor altura en horizontal */
    background-size: cover;
    /* o 'cover' dependiendo del efecto que busques */
    background-position: center top;
    /*background-size: 125% 100%; */

    background-attachment: scroll;
    


    background-repeat: no-repeat;


    /* Eliminado: background-size: 340% 100% (causaba problemas) */

    /* Optimizaciones adicionales */
    position: relative;
    overflow: hidden;

  }


}

.formulario {
  width: min(60rem, 100%);
  margin: 0 auto;
  padding: 1rem;
  border-radius: 2rem;

}



@media (min-width: 768px) {

  .contenedor-campos {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto 20rem;
    column-gap: 1rem;

  }

  .mb-3:nth-child(3),
  .mb-3:nth-child(4) {

    grid-column: 1 /3;

  }

}


.mb-3 label {

  columns: var(--medium-gray);
  font-weight: bold;
  margin-bottom: .5rem;
  display: block;


}

.mb-3 textarea {

  height: 16rem;

}

.form-control {

  width: 100%;
  padding: .5rem;
  border-color: #474d299e;
  border-radius: .5rem;

}

.mapa-google {
  justify-content: flex-end;
  position: relative;
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

/* Overlay oscuro */
.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(177deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.274) 50%,
      rgba(0, 0, 0, 0.849) 100%);
  transition: background 0.5s ease;
}



/* Contenido centrado (ajustado a tu diseño) */
.slide-content {
  position: absolute;
  top: 49vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-20%);
  color: white;
  padding: 2rem;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1.5s ease-out 0.3s;

}

.slide.active .slide-content {
  transform: translateY(-45%);
  opacity: 1;
}

/* Controles */
.slider-controls {
  position: absolute;
  top: 50%;
  /* Centra verticalmente */
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  /* Separa los botones a los extremos */
  padding: 0 10px;
  /* Espacio lateral (opcional) */
  transform: translateY(75%);
  /* Ajuste fino para centrar */
  z-index: 1;
}

/* Estilos para los botones (personaliza según tu diseño) */
.slider-controls button {
  background: rgba(0, 0, 0, 0.5);
  /* Fondo semitransparente */
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* Forma circular */
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.slider-controls button:hover {
  background: rgba(0, 0, 0, 0.8);
  /* Efecto hover */
}



.fw-bold {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 550 !important;
  text-shadow: 2px 4px 3px #00000085;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;




}

.prev-btn,
.next-btn {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #333;
}

.pagination-dots {

  position: absolute;
  left: 48%;
  /* Centrado horizontal */
  transform: translateY(-60px);
  /* Ajuste fino para centrar */
  display: flex;
  gap: 27px;
  /* Espacio entre dots */
  z-index: auto;
  /* Asegura que estén sobre las imágenes */

}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: matrix(1, 0, 0, 1, -80, 510);
  background: rgba(255, 255, 255, 0.315);
  align-items: center;
  cursor: pointer;
  justify-content: center;
  /* Color semi-transparente */
  cursor: pointer;
  transition: all 0.4s ease;
  /* Efecto hover suave */
}

.dot.active,
.dot:hover {
  background: #ffffff;

}

.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.425);
  transition: transform 0.3s;
  margin-bottom: 20px;
}

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

.card-header {
  background-color: var(--dirt-green);
  color: white;
}

.btn-primary {
  align-items: center;
  background-color: #758334;
  border: 2px solid #758334;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 10px #07080599;
  display: inline-flex;
  fill: #000;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: -.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;




}

.btn-primary:hover {
  background-color: #bdd356;
  border-color: #bdd356;
  fill: #606939;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #07080599;
}



.btn-primary:focus {
  color: #171e29;
}

.btn-primary:active {
  background-color: #bdd356;
  border-color: #bdd356;
  fill: #606939;
}


@media (min-width: 768px) {
  .btn-primary {
    min-width: 70px;
  }
}


.bg-light-gray {
  background-color: var(--light-gray);
  background: linear-gradient(#9fb1449c, #6069391f);
}

.bg-medium-gray {
  background-color: var(--medium-gray);
  background: linear-gradient(#9fb14400, #9fb14400);


}

.bg-dark-green {
  background-color: var(--dark-green);
}

.navbar-toggler.left {
  margin-right: auto;
  /* Mueve a la izquierda */
}

.logo-hover img {
  transition: all 0.3s ease;
}

.logo-hover:hover img {
  transform: scale(1.05);
  filter: brightness(1.08) drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
}

#map {
  height: 590px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #727c3d, #606939) border-box;
}

footer {
  background-color: var(--dark-gray);
  color: white;
  padding: 20px 0;
  margin-top: 50px;
}

.pdf-container {
  height: 31rem;
  overflow: hidden;
  position: relative;
}

/* Estilos base (se mantienen igual) */
/* Estilos existentes para botones sociales (se mantienen igual) */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 30px;
  border-radius: 100%;
  background: #bed356;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 4px 6px #007bff99;
}

/* Botón de teléfono */
.phone-btn {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  height: 30px;
  border-radius: 50px;
  background: linear-gradient(135deg,
      #bdd256,
      #d4e4c7);
  /* Verde WhatsApp */
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px #007bff99;
  margin-left: 10px;
}

.phone-btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Efectos interactivos */
.phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #d4e4c7, #bdd256);
}

.phone-btn:active {
  transform: scale(0.95);
}

/* Efectos compartidos */
.social-btn:hover,
.contact-btn:hover {
  transform: translateY(-5px);
}

.social-btn:active,
.contact-btn:active {
  transform: scale(0.95) translateY(-5px);
}

@media (max-width: 991.98px) {
  .nav-item {
    margin: 5px 0 !important;
  }

  .nav-btn {
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 6px 16px;
    font-weight: 500;
    margin: 0 2px;
    width: 100%;
    text-align: center;
  }
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}



.gradient-bullets {
  list-style: none;
  padding-left: 0;
}

.gradient-bullets li {
  padding-left: 2em;
  position: relative;
  margin-bottom: 0.7em;
}

.gradient-bullets li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1em;
  height: 1em;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(45deg, #979696 0%, #c3df49 99%, #bdd256 100%);
}

.gradient-bullets li:nth-child(2):before {
  background: linear-gradient(to top, #979696 0%, #bdd256 100%);
  border-radius: 50%;
}

.gradient-bullets li:nth-child(3):before {
  background: linear-gradient(120deg, #979696 0%, #bdd256 100%);
  border-radius: 10% 30% 50% 70%;
}

/* Animación CSS para letras de hero-section*/
.bounce-effect {
  animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

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

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: all 0.3s ease;
}

.tooltip {
  position: absolute;
  right: 70px;
  background: #05050585;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);

}

.whatsapp-icon:hover .tooltip {
  opacity: 1;
  right: 75px;
  color: #fff;
}

.whatsapp-icon svg {
  width: 36px;
  height: 36px;
}

.pulsating-text {
  animation: pulse 1.5s infinite;
  font-size: 3rem;
  color: #69c711;
  text-align: center;
}

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

  50% {
    transform: scale(1.1);
  }

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


.leaflet-popup-content-wrapper {
  width: 520px !important;
  /* Ancho personalizado */
  max-height: 600px !important;
  border-radius: 8px !important;
}

/* Contenido interno */
.leaflet-popup-content {
  width: 100% !important;
  margin: 10px !important;
  overflow-y: auto !important;
  /* Scroll si es necesario */
}


.rotacion-fuentes {
  display: inline-block;
  font-weight: bold;
  color: #d9e710;
  animation: cambiarFuentes 6s infinite;
}

@keyframes cambiarFuentes {

  0%,
  100% {
    font-family: 'Garamond', sans-serif;
    transform: scale(1.1);
  }

  20% {
    font-family: 'Gilmer', monospace;
    text-decoration: underline;
  }

  40% {
    font-family: 'Old Fashion Script', cursive;
    color: #9bbb51;
  }

  60% {
    font-family: 'Impact', sans-serif;
    letter-spacing: 2px;
  }

  80% {
    font-family: 'ITC Avant Garde Gothic', serif;
    font-style: italic;
  }
}



@media (min-width: 1240px) {
  video {
    width: 100%;
    height: 100%;



    /* Cambiamos cover por contain para evitar recortes */
    margin: 0 auto;
    background-color: #000;
    /* Fondo negro para áreas no cubiertas por el video */
    object-fit: cover;
    /* Rellena todo el espacio, distorsionando si es necesario */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    top: 0;
    left: 0;
    align-items: center;


  }

  .pagination-dots {

    transform: translateY(-195px);

  }

  .dot{
    transform: matrix(1, 0, 0, 1, -55, 510);



  }




}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content-opin {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-btn {
  background: #e1ff8e;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.tu-objeto {
  flex: 1;
}

/* Prevenir scroll en el body cuando el modal está abierto */