﻿/* --- General --- */
:root {
    --brand-primary: #0a3d62;
    --brand-accent: #b45f11;
    --surface-soft: #f4f7fb;
    --text-main: #1f2933;
    --card-border: #c7d8ea;
    --card-radius: 14px;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* espacio para que no tape el header fijo */
    overflow-x: hidden;
    color: var(--text-main);
}

/* --- Navbar --- */
header {
    background: #fff; /* blanco como en tu imagen */
    border-bottom: 1px solid #ddd;
    padding: 10px 20px; /* reducido para que el menÃº quepa mejor */
    position: fixed;    /* fijo arriba */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.9); /* un poco translÃºcido */
    backdrop-filter: blur(6px); /* efecto glass opcional */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Cuando se hace scroll */
header.scrolled {
    background: #fff; /* sÃ³lido */
    box-shadow: 0 2px 8px rgba(0,0,0,0.3); /* sombra sutil */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* evita que el menÃº se parta */
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    perspective: 800px;
}

.logo img {
    height: 50px;
    width: auto;
    transform-style: preserve-3d;
    animation: logo3d 4s ease-in-out infinite,
               glowJP 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* AnimaciÃ³n flotante + 3D */
@keyframes logo3d {
    0% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-6px) rotateY(12deg);
    }
    100% {
        transform: translateY(0) rotateY(0deg);
    }
}

/* Brillo azul y naranja */
@keyframes glowJP {
    0% {
        filter: drop-shadow(0 0 6px #1e90ff);
    }
    50% {
        filter: drop-shadow(0 0 10px #ff7a18);
    }
    100% {
        filter: drop-shadow(0 0 6px #1e90ff);
    }
}

/* Hover (opcional pero recomendado) */
.logo img:hover {
    transform: scale(1.05) rotateY(18deg);
}


/* MenÃº */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;            /* â† espacio mÃ¡s corto entre opciones */
    white-space: nowrap;
}

nav {
    margin-right: 40px;   /* controla quÃ© tan a la izquierda queda */
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #222;
    margin: 5px 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


nav ul li a {
    text-decoration: none;
    font-size: 15px;      /* un poco mÃ¡s compacto */
    font-weight: 500;
    color: #000;
    transition: color 0.3s ease;
    padding: 8px 10px;    /* menos ancho pero cÃ³modo */
}


/* Color al pasar el mouse */
nav ul li a:hover {
    color: #ff4d4d;
}

/* OpciÃ³n activa */
nav ul li a.active {
    color: #ff4d4d;
}
/* BotÃ³n Solicitar Soporte del menÃº */
nav ul li a.btn-menu {
    background: #b45f11;        /* azul del botÃ³n */
    color: #fff !important;     /* texto blanco */
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* --- SecciÃ³n inicio --- */
/* --- SecciÃ³n omagen JP soporte --- */
/* ===== SLIDER JP SOPORTE ===== */
#jpsoporte.slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

/* Slides */
#jpsoporte .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    will-change: opacity;
}


#jpsoporte .slide.activo {
    opacity: 1;
    z-index: 1;
}

/* Overlay sin bloquear clics */
#jpsoporte .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(47, 47, 47, 0.35);
     pointer-events: none; /* ðŸ‘ˆ PERMITE CLICS */
}
#jpsoporte {
    background: url("../img/tecnologia5.jpg") center center / cover no-repeat;
}

/* Texto */
#jpsoporte .slide-info {
    position: absolute;
    bottom: 20%;
    left: 110px;
    max-width: 600px;
    color: #fff;
    z-index: 2;
}

#jpsoporte .slide-info h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

#jpsoporte .slide-info p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

/* Flechas */
#jpsoporte .flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 2.5rem;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 3;
}

#jpsoporte .flecha.izquierda { left: 20px; }
#jpsoporte .flecha.derecha { right: 20px; }

#jpsoporte .flecha:hover {
    background: rgba(0,0,0,0.85);
}

/* BotÃ³n Solicitar Soporte - SecciÃ³n Inicio / Slider */
.btn-soporte {
    display: inline-block;
    background: #b45f11;       /* naranja*/
    color: #fff;               /* texto blanco */
    padding: 14px 26px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-soporte-sec {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-soporte-sec:hover {
    background: #fff;
    color: #0a3d62;
}

/* Hover */
.btn-soporte:hover {
    background: #0f6fd6;
    transform: translateY(-2px);
}




/* Hover */
nav ul li a.btn-menu:hover {
    background: #0f6fd6;        /* azul mÃ¡s oscuro */
    color: #fff;
}


/* --- TÃ­tulos generales --- */
h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
    margin-bottom: 15px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; font-style: italic; }

/* =========================
   SERVICIOS
========================= */
#servicios {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
    padding: 80px 20px;
    text-align: center;
}

#servicios h2 {
    color: var(--brand-primary);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: -26px auto 0;
    padding: 0 20px 20px;
    position: relative;
    z-index: 5;
}

.trust-item {
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 6px 14px rgba(10, 61, 98, 0.08);
}

.trust-item strong {
    display: block;
    color: var(--brand-primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.trust-item span {
    color: #4f5b67;
    font-size: 0.95rem;
}

.servicios-descripcion {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #555;
}

/* GRID */
.servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.servicios-grid .servicio-card {
    grid-column: auto;
}

/* Tarjetas */
.servicio-card {
    background: #ffffff;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(10, 61, 98, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    column-gap: 22px;
    row-gap: 10px;
    align-items: start;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.servicio-card h3 {
    grid-column: 2;
    color: var(--brand-primary);
    font-size: 1.5rem;
    margin: 0 0 6px;
    min-height: 0;
    display: block;
    text-align: left;
}

/* IMAGENES */
.servicio-card img {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* LISTA */
.servicio-card ul {
    grid-column: 2;
    padding-left: 20px;
    margin: 0;
    text-align: left;
}

.servicio-card ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.servicio-card ul li::marker {
    color: var(--brand-accent);
}

.btn-card {
    grid-column: 2;
    display: inline-flex;
    margin-top: 10px;
    align-self: end;
    justify-self: start;
    width: auto;
    background: var(--brand-primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: #0f6fd6;
    transform: translateY(-2px);
}

#planes {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

#planes h2 {
    color: var(--brand-primary);
}

.planes-descripcion {
    max-width: 760px;
    margin: 0 auto 40px;
    color: #4f5b67;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
}

.plan-card {
    background: #f8fbff;
    padding: 24px;
    text-align: left;
}

.plan-card.destacado {
    border: 2px solid var(--brand-accent);
    box-shadow: 0 10px 26px rgba(180, 95, 17, 0.16);
}

.plan-card h3 {
    color: var(--brand-primary);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.precio {
    font-weight: 700;
    color: #b45f11;
    margin: 0 0 14px;
}

.plan-card ul {
    margin: 0;
    padding-left: 18px;
}

.plan-card li {
    margin-bottom: 10px;
}

#proceso {
    background: #f8fbff;
    padding: 80px 20px;
    text-align: center;
}

#proceso h2 {
    color: var(--brand-primary);
}

.proceso-descripcion {
    max-width: 760px;
    margin: 0 auto 36px;
    color: #4f5b67;
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
}

.proceso-card {
    background: #fff;
    padding: 24px;
    text-align: left;
}

.proceso-card .paso {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.proceso-icon {
    width: 142px;
    height: 142px;
    object-fit: contain;
    object-position: center;
    margin: 2px auto 18px;
    display: block;
    background: transparent;
    border: none;
    padding: 0;
    filter: saturate(1.08) contrast(1.06);
}

.proceso-icon.placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #0a3d62;
}

.proceso-card h3 {
    color: var(--brand-primary);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.proceso-card p {
    margin: 0;
    color: #334155;
    line-height: 1.6;
}

#faq {
    background: #f8fbff;
    padding: 80px 20px;
    text-align: center;
}

#faq h2 {
    color: var(--brand-primary);
}

.faq-descripcion {
    max-width: 760px;
    margin: 0 auto 28px;
    color: #4f5b67;
}

.faq-contenedor {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 2px solid var(--brand-accent);
    border-radius: 12px;
    text-align: left;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 18px;
    font-weight: 700;
    color: var(--brand-primary);
    position: relative;
    padding-right: 44px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--brand-accent);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 18px 16px;
    color: #334155;
    line-height: 1.6;
}

#legales {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

#legales h2 {
    color: var(--brand-primary);
}

.legales-descripcion {
    max-width: 780px;
    margin: 0 auto 36px;
    color: #4f5b67;
}

.legales-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-card {
    background: #fff;
    padding: 24px;
    text-align: left;
    scroll-margin-top: 110px;
}

.legal-card h3 {
    color: var(--brand-primary);
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.legal-card p {
    margin: 0 0 12px;
    color: #4f5b67;
}

.legal-card ol {
    margin: 0;
    padding-left: 18px;
}

.legal-card li {
    margin-bottom: 10px;
    line-height: 1.55;
}


/* --- QuiÃ©nes Somos --- */
#quienes-somos {
    background:
      linear-gradient(rgba(10, 28, 46, 0.45), rgba(10, 28, 46, 0.45)),
      url("../img/quienes-somos.png") center center / cover no-repeat;
    padding: 80px 20px;
    text-align: center;
}

#quienes-somos h2 {
    margin-bottom: 40px;
    color: #ffffff;
}

.quienes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.quienes-card {
    background: rgba(255, 255, 255, 0.78);
    padding: 25px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    text-align: left;
}

.quienes-card h3 {
    color: #0a3d62;
    margin-bottom: 10px;
}

.quienes-card p {
    color: #333;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* --- Por quÃ© Escogernos --- */
#porque-escogernos {
    background: #f0f4f8;
    padding: 80px 20px;
    text-align: center;
}

#porque-escogernos h2 {
    margin-bottom: 40px;
    color: #222;
}

.porque {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.porque-card {
    background: #fff;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: left;
}

.porque-icon {
    width: 148px;
    height: 148px;
    object-fit: contain;
    object-position: center;
    margin: 2px auto 18px;
    display: block;
    background: transparent;
    border: none;
    padding: 0;
    filter: saturate(1.1) contrast(1.08);
}

/* Borde unificado para todos los cuadros */
.trust-item,
.servicio-card,
.plan-card,
.proceso-card,
.legal-card,
.quienes-card,
.porque-card {
    border: 2px solid var(--brand-accent);
    border-radius: var(--card-radius);
}

.trust-item:hover,
.servicio-card:hover,
.plan-card:hover,
.proceso-card:hover,
.legal-card:hover,
.quienes-card:hover,
.porque-card:hover {
    border-color: #9a4f0d;
}

.plan-card.destacado:hover {
    border-color: var(--brand-accent);
}

.porque-card h3 {
    color: #0a3d62;
    margin-bottom: 12px;
}

.porque-card p {
    color: #333;
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}

/* --- Contacto --- */
.footer {
  background: #2f3a3f;
  color: #fff;
  padding: 60px 40px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  width: auto;
  height: auto;
  max-width: 220px;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.4s ease;
}

.footer-logo:hover {
  transform: translateY(-8px);
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #b0b0b0;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.8;
  color: #ddd;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: #ddd;
  text-decoration: none;
}

.footer-col a:hover {
  color: #00c3ff;
}

.footer-aviso {
  margin: 12px 0 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  color: #e7edf3;
  line-height: 1.5;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #ae440f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 9998;
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 2px solid var(--brand-accent);
  border-radius: 14px;
  background: rgba(10, 61, 98, 0.94);
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.contact-bar a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.1;
  min-height: 36px;
  pointer-events: auto;
}

.contact-bar a i {
  font-size: 0.85rem;
}

.contact-bar a:hover {
  background: rgba(255,255,255,0.12);
}

/* Responsive: contacto movil */
@media (max-width: 768px) {
  body {
    padding-bottom: 170px;
  }

  .contact-bar {
    display: flex;
    position: fixed;
    left: 8px;
    right: 8px;
    width: auto;
    transform: none;
    bottom: 70px;
    z-index: 2147483647;
    gap: 6px;
    padding: 6px;
    min-height: 52px;
    align-items: stretch;
    border: 2px solid var(--brand-accent);
    border-radius: 14px;
    background: rgba(10, 61, 98, 0.94);
    box-shadow: 0 10px 26px rgba(0,0,0,0.28);
    pointer-events: auto;
  }

  .contact-bar a {
    flex: 1;
    display: flex;
    padding: 9px 6px;
    font-size: 0.78rem;
    gap: 5px;
    min-height: 40px;
    border-radius: 10px;
    pointer-events: auto;
  }
}

/* ===== RESPONSIVE GENERAL ===== */
@media (max-width: 1024px) {
  body {
    padding-top: 120px;
  }

  header {
    padding: 10px 14px;
  }

  .nav-container {
    flex-wrap: wrap;
    gap: 8px;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .logo .frase {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
  }

  nav {
    width: 100%;
    margin-right: 0;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  nav ul li a {
    font-size: 14px;
    padding: 8px 10px;
  }

  #jpsoporte.slider {
    height: 68vh;
    min-height: 460px;
  }

  #jpsoporte .slide-info {
    left: 24px;
    right: 24px;
    bottom: 15%;
    max-width: none;
  }

  #jpsoporte .slide-info h2 {
    font-size: 2.2rem;
  }

  #jpsoporte .slide-info p {
    font-size: 1.1rem;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
    max-width: 1000px;
  }

  .planes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .proceso-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legales-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 84px;
  }

  .logo .frase {
    display: none;
  }

  .nav-container {
    flex-wrap: nowrap;
  }

  .logo {
    width: auto;
    justify-content: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  nav {
    width: 100%;
    margin-right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  header.nav-open nav {
    max-height: 520px;
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 8px;
    border-top: 1px solid #e6e6e6;
    background: #fff;
  }

  nav ul li a {
    display: block;
    font-size: 14px;
    padding: 12px 10px;
  }

  nav ul li a.btn-menu {
    margin-top: 6px;
    text-align: center;
  }

  #jpsoporte.slider {
    height: 58vh;
    min-height: 380px;
  }

  #jpsoporte .slide-info h2 {
    font-size: 1.8rem;
  }

  #jpsoporte .slide-info p {
    font-size: 1rem;
  }

  #jpsoporte .flecha {
    font-size: 1.8rem;
    padding: 8px 12px;
  }

  #jpsoporte .flecha.izquierda {
    left: 10px;
  }

  #jpsoporte .flecha.derecha {
    right: 10px;
  }

  h2 {
    font-size: 2rem;
  }

  .servicio-card,
  .legal-card,
  .quienes-card,
  .porque-card {
    padding: 18px;
  }

  .servicio-card {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .servicio-card img {
    grid-column: 1;
    grid-row: auto;
    max-width: 320px;
    margin: 0 auto;
  }

  .servicio-card h3,
  .servicio-card ul,
  .btn-card {
    grid-column: 1;
  }

  .servicio-card h3 {
    text-align: center;
  }

  .porque-icon {
    width: 122px;
    height: 122px;
    padding: 0;
    margin-bottom: 14px;
  }

  .proceso-icon {
    width: 118px;
    height: 118px;
    padding: 0;
    margin-bottom: 14px;
  }

  .footer {
    padding: 40px 20px 80px;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .planes-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .proceso-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .faq-contenedor {
    max-width: 560px;
  }

  .faq-item summary {
    padding: 14px 16px;
    padding-right: 40px;
    font-size: 0.97rem;
  }

  .faq-item p {
    padding: 0 16px 14px;
    font-size: 0.95rem;
  }

  .legales-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .hero-cta {
    gap: 10px;
  }

  .btn-soporte-sec {
    padding: 11px 22px;
    font-size: 0.95rem;
  }

  .legal-card ol {
    padding-left: 16px;
  }

  .legal-card li {
    font-size: 0.97rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 78px;
    padding-bottom: 178px;
  }

  #jpsoporte .slide-info {
    left: 16px;
    right: 16px;
    bottom: 12%;
  }

  #jpsoporte .slide-info h2 {
    font-size: 1.35rem;
  }

  #jpsoporte .slide-info p {
    font-size: 0.9rem;
  }

  .btn-soporte-sec {
    padding: 9px 14px;
    font-size: 0.88rem;
  }

  .contact-bar a {
    font-size: 0.72rem;
    padding: 8px 6px;
    min-height: 34px;
    gap: 4px;
  }

  .contact-bar a i {
    font-size: 0.8rem;
  }

  .contact-bar {
    bottom: 76px;
  }
}

