/* Parametro generales del diseño de la web */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

main {
  background: linear-gradient(to bottom, #fcc5c5 20%, #ffffff 50%);
  width: 100%;
  overflow: clip;
}


header {
  height: 10vh;
  background: linear-gradient(to bottom, #fcc5c5 20%, #ffffff 50%);
  /* position: sticky; */
  top: 0;
  z-index: 100;
}

/* Contenedor del nav */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  gap: 15px;
  max-width: 100%;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo picture img {
  height: 50px;
  width: auto;
}

/* Menú principal */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.btnNavMenu {
  position: relative;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 5px;
  transition: color 0.5s ease;
  font-weight: 500;
  height: auto;
  color: #000;
}

.btnNavMenu:hover {
  font-weight: 700;
}

.btnNavMenu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #ff6b35;
  transition: width 0.5s ease;
}

.btnNavMenu:hover::after {
  width: 100%;
}

/* Iconos de operación */
.nav-operation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
}

.nav-operation a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  transition: transform 0.3s ease;
}

.nav-operation a:hover {
  transform: scale(1.2);
}

/* Botón hamburguesa */
.hamburger-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 101;
  flex-shrink: 0;
}

.hamburger-btn span {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-operation i:hover{
  transform: scale(1.3);
}


/* Contenedor del main */
/* Imagen principal del main */
.main-img{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 90vh;
}

.main-img-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.main-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 69, 0, 0.05) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Slider principal de imágenes */
.main-slider {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
  width: 100%;
  height: 100%;
}

.main-slider img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.3s ease;
}

.main-img:hover .main-slider img {
  filter: brightness(1) contrast(1.1);
}

/* Botones de navegación del slider principal */
.main-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
  z-index: 10;
}

.main-slider-btn:hover {
  background-color: rgba(255, 107, 53, 0.85);
  transform: translateY(-50%) scale(1.15);
}

.main-slider-prev {
  left: 20px;
}

.main-slider-next {
  right: 20px;
}

/* Indicadores del slider principal */
.main-slider-indicators {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.main-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-slider-dot.active {
  background-color: #ff6b35;
  width: 32px;
  border-radius: 6px;
}

.main-slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.85);
}


.main-menu{
  display:flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  /* padding: 20px; */
  text-align: center;
  width: 100%;
  height: 90vh;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.main-letter{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: 30px;
  /* border: 2px solid red; */
  padding: 30px;
  box-sizing: border-box;
}

.slider-principal {
  width: 50%;
  padding: 30px;
  box-sizing: border-box;
}

.main-menu h2{
  font-size: 30px;
  padding: 30px 0;
}

.main-letter p {
  line-height: 1.6;
  font-size: 15px;
}


/* Contenedor Slider con imagenes*/
.slider-container {
  width: 100%;
  max-width: 900px;     /* Ajusta al diseño */
  margin: 0 auto;
  overflow: hidden;     /* Oculta las otras imágenes */
  position: relative;
}

/* CARRIL DE IMÁGENES */
.slider {
  display: flex;
  transition: transform 0.4s ease;
  cursor: grab;
}

/* IMÁGENES DEL SLIDER */
.slider img {
  width: 100%;
  flex-shrink: 0;       /* Evita que se encojan */
  height: 400px;        /* Ajusta si quieres */
  object-fit: cover;
  user-select: none;
  cursor: grab;
}

/* Botones de navegación */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background-color: rgba(255, 107, 53, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* Indicadores de posición */
.slider-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: #ff6b35;
  width: 28px;
  border-radius: 5px;
}

.slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Base animada de la parte del Main Menu */
.main-letter,
.slider-principal,
.fade-up {
  opacity: 0;
  animation-timeline: view();
  animation-fill-mode: both;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(.22,.8,.36,1);
}

/* Parte solo del texto entrando de izquierda a derecha */
.main-letter.left {
  animation-name: slide-left;
  animation-range: entry 0% entry 150%;
 
}

/* Parte solo de las imagenes entrando de derecha a izquierda */
.slider-principal.right {
  animation-name: slide-right;
  animation-range: entry 0% entry 150%;
}

/* Aqui realizo las animaciones de izquierda a derecha */
@keyframes slide-left {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Aqui realizo las animaciones de derecha a izquierda */
@keyframes slide-right {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Contenedor de la parte service */
.service{
  /* border: 2px solid red; */
  background: linear-gradient(to bottom, #ffffff, #fff5f5);
  width: 100%;
}

.service-container{
  width: 100%;
  max-width: 100vw;
  padding: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  /* border: 2px solid red; */
  box-sizing: border-box;
}


  /* border: 2px solid red; */
.service-container-card {
    /* Mantenemos tus estilos pero aseguramos dimensiones */
    padding: 20px;
    height: auto; /* Cambia el height fijo de 80px por auto */
    min-height: 120px; /* Le da una base sólida al navegador */
    display: flex;
    justify-content: center;
    align-items: center;
}



.service-container-card a{
  display: flex;
  align-items: center;
  flex-direction: column;
  color: black;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 15px 20px;
  border-radius: 15px;
  border: 1px solid transparent;
}

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

.service-container-card:hover a {
  /* border: 1px solid rgba(0, 0, 0, 0.2); */
  background-color: rgba(255, 107, 53, 0.1);
  color: #020202;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Animaciones de las cartas de servicios */
.fade-up{
  opacity: 0;
  animation-timeline: view();
  animation-fill-mode: both;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(.22,1,.36,1);
}

.fade-up.left{
  animation-name: fade-up-left;
  animation-range: entry 0% entry 300%;
}

.fade-up.right{
  animation-name: fade-up-right;
  animation-range: entry 0% entry 300%;
}

@keyframes fade-up-left {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Aqui realizo las animaciones de derecha a izquierda */
@keyframes fade-up-right {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* Contenedor del footer */
/* Footer completo */
footer {
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  padding: 0;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Fade down para botones (desde arriba) */
.fade-down {
  opacity: 0;
  animation-timeline: view();
  animation-name: fade-down;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(.22,1,.36,1);
  animation-fill-mode: both;
  animation-range: entry 0% entry 50%;
}

/* Fade up para copyright (desde abajo) */
.fade-up {
  opacity: 0;
  animation-timeline: view();
  animation-name: fade-up;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(.22,1,.36,1);
  animation-fill-mode: both;
  animation-range: entry 0% entry 50%;
}

/* Keyframes fade down */
@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-30px); /* viene desde arriba */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframes fade up */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px); /* viene desde abajo */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer top - botones */
.footer-top {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.footer-top button {
  background-color: transparent;
  color: #ccc;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  border-radius: 20px;
  font-weight: 500;
}

.footer-top button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Footer bottom - copyright */
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #999;
  width: 100%;
  box-sizing: border-box;
}


/* DISEÑO FORMULARIO MODALE*/
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  animation: fadeInOverlay 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, #fcc5c5 0%, #ffe0e0 50%, #fff5f5 100%);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
  position: relative;
  animation: slideUp 0.4s cubic-bezier(.22,1,.36,1);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 20px;
}

.modal-close:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.modal-header i {
  font-size: 40px;
  color: #ff6b35;
  margin-bottom: 15px;
}

.modal-header h2 {
  color: #1a1a1a;
  font-size: 26px;
  margin-bottom: 8px;
}

.modal-header p {
  color: #666;
  font-size: 14px;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 107, 53, 0.3);
  color: #1a1a1a;
  padding: 12px 15px;
  border-radius: 8px;
  font-family: "inter", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

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

.submit-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}


/* Medias Querys - RESPONSIVE DESIGN */
/* Responsive en todas las medidas y tamaños el footer */
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    gap: 10px;
  }

  .footer-top button {
    width: 80%;
    max-width: 200px;
  }
}

/* Tablets pequeños (788px y menos) */
@media (max-width: 788px) {
  /* Header y Nav */
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to bottom, #fcc5c5 20%, #ffffff 50%);
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    padding: 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 99;
  }

  .nav-menu button {
    font-size: 14px;
    padding: 8px 0;
    height: 50px;
  }

  /* Mostrar hamburguesa */
  .hamburger-btn {
    display: flex !important;
    order: 0;
  }


  .nav-operation {
    gap: 15px;
  }

  /* Main slider */
  .main-img {
    height: 70vh;
  }

  .main-slider-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .main-slider-prev {
    left: 10px;
  }

  .main-slider-next {
    right: 10px;
  }

  /* Main menu */
  .main-menu {
    flex-direction: column;
    height: auto;
    padding: 20px 15px;
    margin: 0;
  }

  .main-letter {
    width: 100% !important;
    padding: 15px 10px;
  }

  .slider-principal {
    width: 100% !important;
    padding: 15px 10px;
  }

  .main-letter h2 {
    font-size: 24px;
  }

  .main-letter p {
    font-size: 14px;
  }

  /* Service section */
  .service-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
    margin: 0;
  }

  .service-container-card {
    width: 100%;
    padding: 15px;
  }

  /* Slider */
  .slider img {
    height: 300px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 10px;
    padding: 30px 20px;
  }

  .footer-top button {
    width: 90%;
    max-width: 100%;
  }

  /* Modal */
  .modal-content {
    width: 95%;
    padding: 20px;
    max-width: calc(100% - 30px);
  }

  .modal-header h2 {
    font-size: 22px;
  }

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

/* Móviles medianos (600px y menos) */
@media (max-width: 600px) {
  /* Base */
  html, body {
    font-size: 14px;
  }

  /* Header */
  /* Header */
  header {
    height: auto;
    min-height: 60px;
  }

  .nav-container {
    padding: 10px 15px;
    flex-wrap: nowrap;
  }

  .nav-logo picture img {
    height: 40px;
  }

  /* Menú principal responsivo */
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to bottom, #fcc5c5 20%, #ffffff 50%);
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    padding: 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 99;
  }

  .nav-menu.active {
    max-height: 500px;
  }

  .btnNavMenu {
    width: 100%;
    font-size: 14px;
    padding: 14px 20px !important;
    height: auto !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
  }

  .btnNavMenu::after {
    display: none !important;
  }

  .btnNavMenu:hover {
    background-color: rgba(255, 107, 53, 0.1);
    font-weight: 500;
  }

  /* Iconos operación en móvil */
  .nav-operation {
    gap: 12px;
    order: -1;
  }

  .nav-operation a {
    font-size: 18px;
  }

  /* Mostrar hamburguesa */
  .hamburger-btn {
    display: flex !important;
    order: 0;
  }

  /* Main slider */
  .main-img {
    height: 55vh;
  }

  .main-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .main-slider-indicators {
    bottom: 15px;
    gap: 6px;
  }

  .main-slider-dot {
    width: 8px;
    height: 8px;
  }

  .main-slider-dot.active {
    width: 24px;
  }

  /* Main menu */
  .main-menu {
    padding: 15px 10px;
    margin: 0;
  }

  .main-letter {
    padding: 10px 5px;
    margin: 0;
  }

  .main-letter h2 {
    font-size: 20px;
    padding: 15px 0;
  }

  .main-letter p {
    font-size: 13px;
    line-height: 1.5;
  }

  .slider-container {
    max-width: 100%;
  }

  .slider img {
    height: 250px;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .slider-prev {
    left: 5px;
  }

  .slider-next {
    right: 5px;
  }

  .slider-indicators {
    bottom: 12px;
    gap: 5px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .slider-dot.active {
    width: 20px;
  }

  /* Service section */
  .service {
    background: linear-gradient(to bottom, #ffffff, #fff8f8);
  }

  .service-container {
    padding: 15px 10px;
    flex-direction: column;
    gap: 15px;
    margin: 0;
  }

  .service-container-card {
    padding: 10px 8px;
    height: auto;
  }

  .service-container-card a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .service-container-card i {
    font-size: 28px;
  }

  /* Footer */
  .footer-top {
    padding: 20px 10px;
    gap: 8px;
  }

  .footer-top button {
    width: 100%;
    padding: 10px 10px;
    font-size: 13px;
    border-radius: 15px;
  }

  .footer-bottom {
    padding: 12px 10px;
    font-size: 12px;
  }

  /* Modal */
  .modal-content {
    width: 95%;
    padding: 15px;
    border-radius: 15px;
    max-width: calc(100% - 30px);
  }

  .modal-close {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .modal-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .modal-header i {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .modal-header p {
    font-size: 13px;
  }

  .support-form {
    gap: 15px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 13px;
    padding: 10px 12px;
  }

  .form-group textarea {
    min-height: 80px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* Móviles muy pequeños (360px y menos) */
@media (max-width: 360px) {
  .nav-menu button {
    font-size: 11px;
  }

  .main-img {
    height: 50vh;
  }

  .main-letter h2 {
    font-size: 18px;
  }

  .slider img {
    height: 200px;
  }

  .modal-header h2 {
    font-size: 18px;
  }
}

/* Pantallas muy grandes (1400px y más) */
@media (min-width: 1400px) {
  .nav-container {
    padding: 0 50px;
  }

  .service-container {
    gap: 60px;
  }

  .main-menu {
    height: 100vh;
  }

  .slider-container {
    max-width: 1000px;
  }

  .slider img {
    height: 450px;
  }
}