/* ===================================
   GENERAL STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-inter);
  color: var(--color-teal);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: var(--color-white);
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade-in para secciones */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   NOTIFICACIONES
   =================================== */
.notificacion {
  position: fixed;
  top: 100px;
  right: -400px;
  max-width: 400px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.notificacion-visible {
  right: 30px;
}

.notificacion-contenido {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  position: relative;
}

.notificacion-icono {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.notificacion-exito {
  border-left: 5px solid #4caf50;
}

.notificacion-exito .notificacion-icono {
  background-color: #4caf50;
  color: var(--color-white);
}

.notificacion-error {
  border-left: 5px solid #f44336;
}

.notificacion-error .notificacion-icono {
  background-color: #f44336;
  color: var(--color-white);
}

.notificacion-mensaje {
  flex: 1;
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

.notificacion-cerrar {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.notificacion-cerrar:hover {
  color: #333;
}

/* ===================================
   HEADER
   =================================== */
.header {
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 80px;
  gap: 16px;
}

.logo {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 30px 0;
    gap: 0;
    margin: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 99;
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    padding: 18px 30px;
    border-bottom: 1px solid rgba(30, 118, 131, 0.1);
  }

  .nav-link::after {
    display: none;
  }
}

.nav-link {
  font-size: 26px;
  font-weight: 400;
  color: var(--color-teal);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-teal);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-cadetblue);
}

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

/* Menu Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--color-teal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .btn-header {
    display: none;
  }
}

/* Overlay para menú móvil */
.nav-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 98;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Botón Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-teal);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(30, 118, 131, 0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  visibility: hidden;
  z-index: 98;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--color-cadetblue);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(30, 118, 131, 0.5);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

@media screen and (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

.btn-header {
  width: 240px;
  height: 70px;
  background-color: var(--color-azure);
  border: 2px solid var(--color-teal);
  border-radius: 10px;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-teal);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  line-height: 1.2;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-header:hover {
  background-color: var(--color-teal);
  color: var(--color-white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 16px rgba(30, 118, 131, 0.4);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  min-height: 480px;
  max-height: 630px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 55px);
  overflow: hidden;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 50px 80px 60px;
  max-width: 800px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.15;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 32px;
  line-height: 1.35;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-hero {
  width: 400px;
  height: 58px;
  background-color: var(--color-teal);
  border: 2px solid var(--color-aliceblue);
  border-radius: 10px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero:hover {
  background-color: var(--color-cadetblue);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-tagline {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 55px;
  min-height: 55px;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-tagline span {
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--color-teal);
  letter-spacing: 1px;
}

/* ===================================
   SERVICIOS SECTION
   =================================== */
.servicios {
  background-color: var(--color-aliceblue);
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 90px;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-darkslateblue);
  text-align: center;
  margin-bottom: 50px;
  padding: 0 40px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.servicio-card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  min-height: 270px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.servicio-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 86, 157, 0.2);
}

.servicio-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.servicio-card:hover img {
  transform: scale(1.1);
}

.servicio-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-darkslateblue);
  line-height: 1.3;
}

.servicio-card p {
  font-size: 17px;
  font-weight: 300;
  color: var(--color-darkslateblue);
  line-height: 1.4;
}

/* ===================================
   PROCESO SECTION
   =================================== */
.proceso {
  position: relative;
  padding: 50px 80px;
  background-color: #0a4a5c;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-margin-top: 90px;
}

.proceso::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(./public/Nuestro-Proceso@3x.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
}

.proceso-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.proceso-image {
  position: relative;
}

.proceso-image > img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.proceso-badges {
  display: flex;
  justify-content: space-between;
  margin-top: -2px;
}

.badge {
  background-color: var(--color-white);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  flex: 1;
  min-height: 140px;
}

.badge:first-child {
  border-radius: 0 0 0 10px;
  border-right: 2px solid var(--color-darkslateblue);
}

.badge:nth-child(2) {
  border-left: 1px solid var(--color-darkslateblue);
  border-right: 1px solid var(--color-darkslateblue);
}

.badge:last-child {
  border-radius: 0 0 10px 0;
  border-left: 2px solid var(--color-darkslateblue);
}

.badge img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.badge span {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-darkslateblue);
  line-height: 1.3;
}

.proceso-content {
  color: var(--color-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.proceso-content h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.proceso-description {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.35;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.proceso-steps {
  font-size: 28px;
  font-weight: 700;
  padding-left: 40px;
  list-style-position: outside;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.proceso-steps li {
  margin-bottom: 18px;
  line-height: 1.4;
}

/* ===================================
   CONTACTO SECTION
   =================================== */
.contacto {
  background-color: var(--color-aliceblue);
  padding: 50px 80px 30px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  scroll-margin-top: 90px;
}

.contacto-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  width: 100%;
}

.contacto-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.solicita-text {
  font-weight: 600;
  color: var(--color-darkslateblue);
}

.gratis-text {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-darkslateblue);
}

.contacto-description {
  font-size: 24px;
  color: var(--color-darkslateblue);
  margin-bottom: 22px;
  line-height: 1.35;
}

.contacto-benefits {
  list-style: none;
  padding: 0;
}

.contacto-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--color-darkslateblue);
}

.contacto-benefits img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.contacto-form {
  background-color: var(--color-white);
  border: 3px solid var(--color-darkslateblue);
  border-radius: 10px;
  padding: 28px;
}

.contacto-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.error-message {
  display: none;
  color: #d32f2f;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
  animation: slideInRight 0.3s ease-out;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 18px;
  font-family: var(--font-inter);
  color: #333;
  background-color: var(--color-white);
  border: 2px solid var(--color-darkslateblue);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
  color: #666;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(30, 118, 131, 0.1);
}

.input-error {
  border-color: #d32f2f !important;
  background-color: #ffebee !important;
}

.input-error:focus {
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1) !important;
}

.input-success {
  border-color: #4caf50 !important;
  background-color: #f1f8f4 !important;
}

.input-success:focus {
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1) !important;
}

.contacto-form textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-inter);
}

.btn-submit {
  width: 100%;
  height: 48px;
  background-color: var(--color-darkslateblue);
  border: 1px solid var(--color-darkslateblue);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 6px;
  padding: 8px 12px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover:not(:disabled) {
  background-color: var(--color-steelblue);
  border-color: var(--color-steelblue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 86, 157, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  position: relative;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background-color: var(--color-teal);
  padding: 18px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.footer-logo {
  width: 240px;
  height: auto;
  object-fit: contain;
}

.footer-email {
  font-size: 36px;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-email::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-white);
  transition: width 0.3s ease;
}

.footer-email:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer-email:hover::after {
  width: 100%;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets y pantallas medianas */
@media screen and (max-width: 1200px) {
  .header-content {
    padding: 12px 50px;
    gap: 18px;
  }

  .logo {
    width: 160px;
  }

  .nav {
    gap: 24px;
    margin-right: 20px;
  }

  .nav-link {
    font-size: 22px;
  }

  .btn-header {
    width: 210px;
    height: 65px;
    font-size: 23px;
  }

  .hero {
    height: auto;
    min-height: 500px;
    max-height: none;
  }

  .hero-content {
    padding: 50px 50px 70px;
  }

  .hero-title {
    font-size: 34px;
    margin-bottom: 26px;
  }

  .hero-description {
    font-size: 21px;
    margin-bottom: 34px;
  }

  .btn-hero {
    width: 370px;
    height: 56px;
    font-size: 25px;
  }

  .hero-tagline span {
    font-size: 24px;
  }

  .servicios {
    padding: 60px 50px;
    min-height: 100vh;
  }

  .section-title {
    font-size: 29px;
    margin-bottom: 45px;
  }

  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 50px;
  }

  .servicio-card {
    padding: 34px 26px;
  }

  .servicio-card img {
    width: 115px;
    height: 115px;
  }

  .servicio-card h3 {
    font-size: 19px;
  }

  .servicio-card p {
    font-size: 16px;
  }

  .proceso {
    padding: 50px 50px;
  }

  .proceso-container {
    gap: 50px;
  }

  .proceso-content h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }

  .proceso-description {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .proceso-steps {
    font-size: 24px;
  }

  .proceso-steps li {
    margin-bottom: 20px;
  }

  .badge {
    padding: 18px 16px;
  }

  .badge span {
    font-size: 18px;
  }

  .contacto {
    padding: 55px 50px 35px;
    min-height: auto;
  }

  .contacto-container {
    gap: 55px;
  }

  .contacto-info h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }

  .gratis-text {
    font-size: 34px;
  }

  .contacto-description {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .contacto-benefits li {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .contacto-form {
    padding: 30px;
  }

  .contacto-form input,
  .contacto-form textarea {
    font-size: 17px;
    padding: 11px 13px;
  }

  .btn-submit {
    font-size: 19px;
    height: 50px;
  }

  .footer {
    padding: 20px 50px;
  }

  .footer-logo {
    width: 210px;
  }

  .footer-email {
    font-size: 32px;
  }
}

/* Móviles */
@media screen and (max-width: 768px) {
  .header-content {
    flex-wrap: nowrap;
    padding: 12px 20px;
    gap: 14px;
    justify-content: space-between;
  }

  .logo {
    width: 150px;
  }

  .hero {
    height: auto;
    min-height: 470px;
    max-height: none;
  }

  .hero-content {
    padding: 55px 25px 65px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .btn-hero {
    width: 100%;
    max-width: 350px;
    height: 54px;
    font-size: 22px;
  }

  .hero-tagline span {
    font-size: 20px;
  }

  .servicios {
    padding: 65px 25px;
    min-height: 100vh;
  }

  .section-title {
    font-size: 27px;
    margin-bottom: 42px;
    padding: 0 20px;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
  }

  .servicio-card {
    padding: 34px 26px;
    min-height: auto;
  }

  .servicio-card img {
    width: 105px;
    height: 105px;
  }

  .servicio-card h3 {
    font-size: 19px;
  }

  .servicio-card p {
    font-size: 16.5px;
  }

  .proceso {
    padding: 45px 25px;
  }

  .proceso-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .badge {
    padding: 16px 10px;
    min-height: 125px;
  }

  .badge img {
    width: 40px;
    height: 40px;
  }

  .badge span {
    font-size: 17px;
  }

  .proceso-content h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .proceso-description {
    font-size: 20px;
    margin-bottom: 26px;
  }

  .proceso-steps {
    font-size: 21px;
    padding-left: 32px;
  }

  .proceso-steps li {
    margin-bottom: 16px;
  }

  .contacto {
    padding: 55px 25px 45px;
    min-height: auto;
  }

  .contacto-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contacto-info h2 {
    font-size: 28px;
  }

  .gratis-text {
    font-size: 32px;
  }

  .contacto-description {
    font-size: 21px;
  }

  .contacto-benefits li {
    font-size: 19px;
  }

  .contacto-benefits img {
    width: 32px;
    height: 32px;
  }

  .contacto-form {
    padding: 28px 22px;
  }

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

  .btn-submit {
    font-size: 19px;
    height: 50px;
  }

  .footer {
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
    text-align: center;
  }

  .footer-logo {
    width: 190px;
  }

  .footer-email {
    font-size: 26px;
  }

  /* Notificaciones en móvil */
  .notificacion {
    max-width: calc(100% - 40px);
    right: -100%;
  }

  .notificacion-visible {
    right: 20px;
  }

  .notificacion-contenido {
    padding: 16px 18px;
  }

  .notificacion-mensaje {
    font-size: 15px;
  }
}

/* Móviles pequeños */
@media screen and (max-width: 480px) {
  .header-content {
    padding: 10px 16px;
  }

  .logo {
    width: 130px;
  }

  .hero {
    height: auto;
    min-height: 420px;
  }

  .hero-content {
    padding: 40px 18px 50px;
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 26px;
  }

  .btn-hero {
    font-size: 20px;
    height: 50px;
    max-width: 310px;
  }

  .hero-tagline span {
    font-size: 18px;
  }

  .servicios {
    padding: 50px 18px;
  }

  .section-title {
    font-size: 25px;
    margin-bottom: 36px;
  }

  .servicios-grid {
    gap: 24px;
    padding: 0 16px;
  }

  .servicio-card {
    padding: 30px 22px;
  }

  .servicio-card img {
    width: 100px;
    height: 100px;
  }

  .servicio-card h3 {
    font-size: 18px;
  }

  .servicio-card p {
    font-size: 16px;
  }

  .proceso {
    padding: 40px 18px;
  }

  .badge {
    padding: 14px 8px;
    min-height: 115px;
  }

  .badge img {
    width: 36px;
    height: 36px;
  }

  .badge span {
    font-size: 15px;
  }

  .proceso-content h2 {
    font-size: 23px;
    margin-bottom: 16px;
  }

  .proceso-description {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .proceso-steps {
    font-size: 19px;
    padding-left: 28px;
  }

  .proceso-steps li {
    margin-bottom: 14px;
  }

  .contacto {
    padding: 45px 18px 35px;
  }

  .contacto-container {
    gap: 38px;
  }

  .contacto-info h2 {
    font-size: 25px;
  }

  .gratis-text {
    font-size: 29px;
  }

  .contacto-description {
    font-size: 19px;
  }

  .contacto-benefits li {
    font-size: 17px;
  }

  .contacto-benefits img {
    width: 28px;
    height: 28px;
  }

  .contacto-form {
    padding: 24px 18px;
  }

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

  .btn-submit {
    font-size: 18px;
    height: 48px;
  }

  .footer-logo {
    width: 170px;
  }

  .footer-email {
    font-size: 23px;
  }

  .notificacion-icono {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
}
  }

  .contacto-form input,
  .contacto-form textarea {
    font-size: 16px;
  }

  .btn-submit {
    font-size: 18px;
    height: 46px;
  }

  .footer-email {
    font-size: 21px;
  }

  .footer-logo {
    width: 160px;
  }
}
