/* =====================================================
PLANTILLA ISP - ESTILOS PRINCIPALES

IMPORTANTE:
Este archivo contiene el diseño completo de la página.
No modificar si no tienes conocimientos de CSS.

Los cambios de contenido deben realizarse en el archivo HTML.

===================================================== */

/* =========================
VARIABLES GLOBALES
========================= */
:root {
  --rojo: #df0615;
  --negro: #231815;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* =========================
RESET Y CONFIGURACIÓN BASE
Configuración general del sitio
========================= */
/* TIPOGRAFIA PRO */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

html, body {
overflow-x: hidden;
width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background: white;
}

/* =========================
HEADER / MENÚ PRINCIPAL
Estilos del menú superior
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: all 0.4s ease;
}

/* SCROLL EFFECT */
.header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 12px 0;
}

/* CONTENEDOR */
.nav {
  width: 92%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #df0615;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s;
}

/* EFECTO BRILLO LOGO */
.logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #df0615;
  transition: 0.4s;
}

.logo:hover::after {
  width: 100%;
}

.logo:hover {
  transform: translateY(-1px);
}

/* MENU */
.menu {
  display: flex;
  gap: 35px;
  position: relative;
}

/* LINKS */
.nav-link {
  text-decoration: none;
  color: #231815;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* EFECTO LINEA */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #df0615;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #df0615;
}

/* REDES */
.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons a {
  font-size: 18px;
  color: #231815;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #df0615;
  transform: translateY(-3px) scale(1.1);
}

/* BOTON CONTACTAR */
.btn-header {
  background: linear-gradient(135deg, #df0615, #b00410);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(223,6,21,0.3);
  transition: 0.3s;
}

/* HOVER BOTON */
.btn-header:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(223,6,21,0.4);
  background: #231815;
}

.menu-toggle {
  display: none;
}

/* RESPONSIVE */
@media(max-width:768px){
.menu {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: white;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  display: none;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 1000;
}

.menu.active {
  display: flex;
}

.menu-toggle {
  display: block;
  cursor: pointer;
  font-size: 26px;
}

.social-icons {
  display: flex;
  margin-top: 10px;
}

.btn-header {
  display: inline-block;
  margin-top: 10px;
}
}

/* EFECTO ENTRADA HEADER */
.header {
  animation: headerFade 0.8s ease;
}

@keyframes headerFade {
  from{
    opacity:0;
    transform: translateY(-20px);
  }

  to{
    opacity:1;
    transform: translateY(0);
  }
}

/* HEADER SOBRE HERO (texto blanco) */
.header:not(.scrolled) .nav-link {
  color: white;
}

.header:not(.scrolled) .social-icons a {
  color: white;
}

/* Hover en blanco */
.header:not(.scrolled) .nav-link:hover {
  color: #df0615;
}

/* Linea hover */
.header:not(.scrolled) .nav-link::after {
  background: #df0615;
}

.header:not(.scrolled) {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );
}

/* =========================
HEADER / MENÚ PRINCIPAL
Estilos del menú superior
========================= */
.bignet {
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background:url("assets/bignet.jpeg");
  background-size:cover;
  background-position:center;
  color:white;
}

.bignetcob {
  position:relative;
 
  
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:url("assets/cristobal_colon.gif");
  
  color:white;
}

.escala {
        width:80%;
        margin:auto;
        max-width:700px;
}

.hero {
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background:url("assets/hero.png");
  background-size:cover;
  background-position:center;
  color:white;
}

/* OVERLAY */
.hero-overlay {
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(
  90deg,
  rgba(0,0,0,.85) 0%,
  rgba(0,0,0,.7) 40%,
  rgba(0,0,0,.2) 100%
  );
}

.hero-container {
  position:relative;
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.hero-title {
  font-size:3.2rem;
  font-weight:700;
}

.hero-title span {
  color:#df0615;
}

.hero-subtitle {
  margin:20px 0;
  color:#ccc;
}

.hero-badge {
  background:rgba(255,255,255,.1);
  padding:8px 15px;
  border-radius:30px;
  font-size:13px;
}

.hero-features {
  margin-top:25px;
  display:flex;
  gap:25px;
}

.hero-features span {
  display:flex;
  align-items:center;
  gap:8px;
  color:#ddd;
  font-size:14px;
  background:rgba(255,255,255,.05);
  padding:8px 14px;
  border-radius:30px;
  backdrop-filter:blur(8px);
  transition:.3s;
}

.hero-features span:hover {
  background:rgba(255,255,255,.15);
  transform:translateY(-2px);
}

.hero-features i {
  color:#df0615;
}

/* BOTONES HERO */
.hero-buttons {
  display:flex;
  gap:15px;
  margin-top:25px;
}

/* BOTON PRINCIPAL */
.btn-primary {
  background:linear-gradient(135deg,#df0615,#b00410);
  color:white;
  padding:14px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 10px 25px rgba(223,6,21,0.3);
  transition:.3s;
}

.btn-primary:hover {
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(223,6,21,0.5);
}


/* BOTON SECUNDARIO */
.btn-secondary {
  border:2px solid rgba(255,255,255,.3);
  padding:14px 28px;
  border-radius:50px;
  color:white;
  text-decoration:none;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(10px);
  transition:.3s;
}

.btn-secondary:hover {
  background:#df0615;
  border-color:#df0615;
  transform:translateY(-3px);
}


/* =========================
SECCIÓN NOSOTROS
Información de la empresa
========================= */
.about-isp {
  position:relative;
  padding:120px 20px;
  overflow:hidden;
  background:linear-gradient(
  135deg,
  #ffffff,
  #f5f5f5
  );
  overflow:hidden;
}

/* EFECTO FONDO */
.about-isp::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(223,6,21,.15);
  filter:blur(120px);
  top:-200px;
  right:-200px;
}

/* CONTENEDOR */
.about-container {
  position:relative;
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

/* TEXTO */
.about-text {
  max-width:520px;
}

.about-label {
  color:#df0615;
  font-weight:600;
  letter-spacing:1px;
}

.about-text h2 {
  font-size:2.5rem;
  margin:15px 0;
}

.about-text h2 span {
  color:#df0615;
}

.about-text p {
  color:#555;
  margin-bottom:25px;
}

/* FEATURES */
.about-features {
  display:flex;
  flex-direction:column;
  gap:15px;
}

.feature {
  display:flex;
  align-items:center;
  gap:15px;
  background:white;
  padding:15px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
  transition:.3s;
}

.feature:hover {
  transform:translateX(10px);
}

.feature i {
  color:#df0615;
  font-size:18px;
}

/* BOTON */
.btn-about {
  display:inline-block;
  margin-top:25px;
  background:linear-gradient(135deg,#df0615,#b00410);
  color:white;
  padding:14px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
  box-shadow:0 10px 25px rgba(223,6,21,.3);
}

.btn-about:hover {
  transform:translateY(-3px);
}

/* TARJETAS */
.about-stats {
  display:flex;
  gap:20px;
}

.stat-card {
  background:white;
  padding:30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.3s;
  min-width:140px;
}

.stat-card:hover {
  transform:translateY(-10px);
}

.stat-card h3 {
  color:#df0615;
  font-size:2rem;
}

.stat-card p {
  color:#777;
}

/* RESPONSIVE */
@media(max-width:768px){

.about-container{
  flex-direction:column;
  text-align:center;
}

.about-stats{
  flex-direction:column;
}

}

/* =========================
EFECTO FIBRA NOSOTROS
========================= */
.about-fiber {
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}

.about-fiber::before,
.about-fiber::after {
  content:"";
  position:absolute;
  width:120%;
  height:2px;
  background:linear-gradient(
  90deg,
  transparent,
  rgba(223,6,21,.15),
  transparent
  );
  animation:fiberMove 12s linear infinite;
}

.about-fiber::before {
  top:30%;
}

.about-fiber::after {
  top:70%;
  animation-delay:5s;
}

@keyframes fiberMove {

  0%{
    transform:translateX(-100%);
  }

  100%{
    transform:translateX(100%);
  }
}

/* =========================
PARTICULAS NOSOTROS
========================= */
.about-particles {
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  pointer-events:none;
  z-index:0;
}

.about-particles::before {
  content:"";
  position:absolute;
  width:6px;
  height:6px;
  background:#df0615;
  border-radius:50%;
  box-shadow:
  100px 200px #df0615,
  300px 100px #df0615,
  500px 300px #df0615,
  700px 150px #df0615,
  900px 250px #df0615;
  animation:particlesFloat 20s linear infinite;
  opacity:.15;

}

@keyframes particlesFloat {

  0%{
  transform:translateY(0);
  }

  100%{
  transform:translateY(-100px);
  }
}


/* =========================
SECCIÓN PLANES
Tarjetas de precios
========================= */
.plans {
  padding: 120px 20px;
  background: linear-gradient(135deg, #231815, #1a120f);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* EFECTO FONDO */
.plans::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(223,6,21,0.2);
  filter: blur(120px);
  top: -200px;
  left: -200px;
}

/* HEADER */
.plans-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
}

.plans-header p {
  color: #ccc;
  margin-top: 10px;
}

/* GRID */
.plan-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* CARD UNIFICADA */
.plan-card {
  background: white;
  color: #231815;
  padding: 35px;
  width: 280px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;

  /* UNIÓN DE EFECTOS */
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

/* HOVER FINAL (fusionado) */
.plan-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

/* RECOMENDADO */
.plan-card.recomendado {
  transform: scale(1.1);
  border: 2px solid #df0615;
  background: linear-gradient(135deg, #ffffff, #fff5f5);
  box-shadow: 0 20px 50px rgba(223,6,21,0.2);
}

/* BADGE */
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #df0615;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
}

/* EFECTO BRILLO */
.plan-card.recomendado::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(223,6,21,0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.plan-card.recomendado:hover::before {
  opacity: 1;
}

/* SPEED */
.speed {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px 0;
}

/* PRECIO */
.price {
  font-size: 30px;
  color: #df0615;
  font-weight: bold;
}

/* BOTÓN FINAL */
.btn-plan {
  margin-top: 20px;
  padding: 14px;
  width: 100%;
  border-radius: 50px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  background: linear-gradient(135deg, #231815, #000);
  color: white;
  transition: 0.3s;
}

.btn-plan:hover {
  background: linear-gradient(135deg, #df0615, #b00410);
  transform: scale(1.05);
}

/* BOTÓN DESTACADO */
.btn-plan.destacado {
  background: linear-gradient(135deg, #df0615, #b00410);
  box-shadow: 0 10px 25px rgba(223,6,21,0.4);
}

/* ANIMACION */
.plan-card {
  opacity: 0;
  transform: translateY(40px);
}

.plan-card.active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}

.plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px; 
}

/* TITULO */
.plan-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.speed {
  font-size: 2.2rem;
  margin: 15px 0;
}

.price {
  margin-bottom: 10px;
}

.plan-card.recomendado .price {
  font-size: 34px;
}

.plan-card.recomendado .btn-plan {
  font-size: 16px;
}

.plan-card.recomendado {
position: relative;
z-index: 1;
}

.btn-plan {
position: relative;
z-index: 2;
}


/* =========================
SECCIÓN BENEFICIOS
Ventajas del servicio
========================= */
/* =========================
FIBER ANIMATION
========================= */
.fiber-lines {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}

.fiber-lines span {
  position:absolute;
  width:2px;
  height:200px;
  background:linear-gradient(
  to bottom,
  transparent,
  rgba(223,6,21,.5),
  transparent
  );
  animation:fiberMove 6s linear infinite;
  opacity:.4;
}

/* POSICIONES */
.fiber-lines span:nth-child(1){
  left:10%;
  animation-delay:0s;
}

.fiber-lines span:nth-child(2){
  left:25%;
  animation-delay:1s;
}

.fiber-lines span:nth-child(3){
  left:50%;
  animation-delay:2s;
}

.fiber-lines span:nth-child(4){
  left:75%;
  animation-delay:3s;
}

.fiber-lines span:nth-child(5){
  left:90%;
  animation-delay:4s;
}

/* ANIMACION */
@keyframes fiberMove {

  0%{
  transform:translateY(-200px);
  opacity:0;
  }

  30%{
  opacity:.6;
  }

  100%{
  transform:translateY(120vh);
  opacity:0;
  }
}

.benefits {
  position:relative;
  padding:120px 20px;
  background:white;
  text-align:center;
  overflow:hidden;
}

/* EFECTO LINEAS FIBRA */
.benefits::before {
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:
  radial-gradient(circle at 20% 30%, rgba(223,6,21,.08), transparent 40%),
  radial-gradient(circle at 80% 70%, rgba(223,6,21,.08), transparent 40%);
  pointer-events:none;
}


/* TITULO */
.section-title {
  font-size:2.4rem;
  margin-bottom:10px;
}

/* SUBTITULO */
.benefits-subtitle {
  color:#666;
  max-width:600px;
  margin:auto;
  margin-bottom:60px;
}

/* GRID */
.benefits-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
  width:90%;
  margin:auto;
}


/* CARD */
.benefit-card {
  background:white;
  padding:35px 25px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.05);
  transition:.4s;
  position:relative;
  overflow:hidden;
}


/* ICONOS */
.benefit-card i {
  font-size:28px;
  color:#df0615;
  margin-bottom:15px;
}


/* TITULO */
.benefit-card h4 {
  margin-bottom:10px;
  font-size:18px;
}


/* TEXTO */
.benefit-card p {
  color:#666;
  font-size:14px;
  margin-bottom:10px;
}


/* EXTRA */
.benefit-card span {
  font-size:13px;
  color:#df0615;
  font-weight:600;
}


/* HOVER */
.benefit-card:hover {
  transform:translateY(-12px);
  box-shadow:0 25px 50px rgba(223,6,21,.15);
}


/* EFECTO LUZ */
.benefit-card::before {
  content:"";
  position:absolute;
  width:200px;
  height:200px;
  background:rgba(223,6,21,.08);
  filter:blur(80px);
  top:-100px;
  right:-100px;
}


/* RESPONSIVE */

@media(max-width:768px){

  .benefits-grid {
    grid-template-columns:1fr;
  }
}


/* =========================
SECCIÓN CLIENTES
Contadores y testimonios
========================= */
.clients-section {
  padding:120px 20px;
  background: linear-gradient(135deg,#231815,#1a120f);
  color:white;
  position:relative;
  overflow:hidden;
}

/* EFECTO FONDO */
.clients-section::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:rgba(223,6,21,0.25);
  filter:blur(150px);
  top:-200px;
  left:-200px;
}

/* CONTENEDOR */
.clients-container{
  position:relative;
  max-width:1100px;
  margin:auto;
  min-height:320px;
}

/* PANEL */
.clients-panel{
  position:absolute;
  width:100%;
  opacity:0;
  animation:fadePanels 12s infinite;
}

/* PANEL TESTIMONIOS */
.panel-testimonials{
  animation-delay:6s;
}

/* ANIMACION DIFUMINADO */
@keyframes fadePanels{

  0%{
  opacity:0;
  transform:translateY(20px);
  }

  10%{
  opacity:1;
  transform:translateY(0);
  }

  45%{
  opacity:1;
  }

  55%{
  opacity:0;
  }

  100%{
  opacity:0;
  }

}

/* TITULO */
.clients-section .section-title{
  font-size:2.2rem;
  margin-bottom:40px;
}

/* =============================
CONTADOR
============================= */
.stats-grid{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.stat-card{
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:20px;
  text-align:center;
  backdrop-filter:blur(10px);
  transition:.3s;
}

.stat-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.08);
}

.stat-card h3{
  font-size:2.5rem;
  color:#df0615;
}

.stat-card p{
  margin-top:10px;
  color:#ccc;
}

/* =============================
TESTIMONIOS
============================= */
.testimonial-grid{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
  margin-top:40px;
}

.testimonial-card{
  background:rgba(255,255,255,0.05);
  padding:25px;
  border-radius:20px;
  width:260px;
  max-width:100%;
  backdrop-filter:blur(10px);
  transition:.3s;
}

.testimonial-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.08);
}

.testimonial-card span{
  display:block;
  margin:10px 0;
  color:#df0615;
}

.testimonial-card h4{
  margin-top:5px;
}

/* RESPONSIVE */
@media(max-width:768px){

.stats-testimonials {
  padding: 120px 20px;
  background: linear-gradient(135deg,#231815,#1a120f);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: auto;
}


.testimonial-grid{
  flex-direction:column;
  align-items:center;
}

.testimonial-card{
  width:90%;
  max-width:350px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
}


/* =========================
BOTON FLOTANTE
WhastApp
========================= */
.whatsapp-container {
  position:fixed;
  bottom:25px;
  right:25px;
  z-index:1000;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}

/* BOTON */
.whatsapp {
  width:65px;
  height:65px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:26px;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
  transition:.3s;
  animation:whatsappFloat 3s ease-in-out infinite;
}

.whatsapp:hover {
  transform:scale(1.1);
}

/* ANIMACION FLOTANTE */
@keyframes whatsappFloat {

  0%{
  transform:translateY(0);
  }

  50%{
  transform:translateY(-6px);
  }

  100%{
  transform:translateY(0);
  }
}

/* BURBUJA */
.whatsapp-tooltip {
  background:white;
  color:#231815;
  padding:10px 15px;
  border-radius:20px;
  font-size:14px;
  margin-bottom:10px;
  box-shadow:0 10px 25px rgba(0,0,0,.1);
  opacity:0;
  transform:translateY(10px);
  transition:.4s;
}

/* ACTIVA */
.whatsapp-tooltip.active {
  opacity:1;
  transform:translateY(0);
}

/* FLECHA */
.whatsapp-tooltip::after {
  content:"";
  position:absolute;
  right:15px;
  bottom:-6px;
  width:12px;
  height:12px;
  background:white;
  transform:rotate(45deg);
}

/* ANIMACIONES */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
SECCIÓN PREGUNTAS FRECUENTES
========================= */
.faq-pro {
  padding: 120px 20px;
  background: linear-gradient(135deg, #231815, #1a120f);
  color: white;
  text-align: center;
}

/* GRID */
.faq-grid {
  max-width: 900px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ITEM */
.faq-item {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

/* HOVER */
.faq-item:hover {
  background: rgba(255,255,255,0.08);
}

/* BOTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  font-size: 16px;
  color: white;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

/* ICONO */
.faq-question i {
  transition: 0.3s;
  font-style: normal;
  font-size: 20px;
}

/* RESPUESTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: left;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  color: #ccc;
}

/* ACTIVO */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active i {
  transform: rotate(45deg);
  color: #df0615;
}

.highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: -80px; /* efecto flotante sobre hero */
  padding: 0 20px;
  flex-wrap: wrap;
  z-index: 10;
  position: relative;
}

.highlight-card {
  background: white;
  padding: 20px 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICONO */
.highlight-card .icon {
  font-size: 28px;
  background: rgba(223,6,21,0.1);
  color: #df0615;
  padding: 12px;
  border-radius: 12px;
}

/* TEXTO */
.highlight-card h4 {
  margin: 0;
  font-size: 16px;
  color: #231815;
}

.highlight-card p {
  font-size: 14px;
  color: #666;
}

.highlight-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(223,6,21,0.15);
}

/* ANIMACION ENTRADA */
.highlight-card {
  opacity: 0;
  transform: translateY(40px);
}

.highlight-card.active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}


/* =========================
   BOTÓN PRINCIPAL (UNIFICADO)
========================= */
.btn-primary {
  background: linear-gradient(135deg, #df0615, #b00410);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(223,6,21,0.3);
}

/* ICONO */
.btn-primary::before {
  content: "💬";
}

/* HOVER */
.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(223,6,21,0.5);
  background: #231815;
}


/* ======================
SECCIÓN NOSOTROS
========================= */
.about-isp {
  padding: 120px 20px;
  background: linear-gradient(120deg, #ffffff, #f7f7f7);
  position: relative;
  overflow: hidden;
}

/* EFECTO FONDO */
.about-isp::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(223,6,21,0.1);
  filter: blur(120px);
  top: -150px;
  right: -150px;
}

.about-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* TEXTO */
.about-text {
  max-width: 500px;
}

.about-label {
  font-size: 13px;
  color: #df0615;
  font-weight: bold;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: 2.4rem;
  margin: 10px 0;
  color: #231815;
}

.about-text p {
  color: #555;
  margin-bottom: 25px;
}

/* FEATURES */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.feature span {
  font-size: 18px;
}

/* BOTON */
.btn-about {
  margin-top: 25px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #df0615, #b00410);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(223,6,21,0.4);
}

/* VISUAL GRID */
.about-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARDS */
.about-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.about-card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* DIFERENTES TAMAÑOS */
.about-card.large {
  grid-column: span 2;
}

.about-card h3 {
  color: #df0615;
  font-size: 2rem;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-card.large {
    grid-column: span 1;
  }
}

/* =========================
GLOW PROCESS
========================= */
.process {
  position:relative;
  overflow:hidden;
}

.process-glow {
  position:absolute;
  width:600px;
  height:600px;
  background:rgba(223,6,21,.12);
  filter:blur(120px);
  top:-200px;
  left:-200px;
  animation:processGlow 12s ease-in-out infinite;
  pointer-events:none;
}

@keyframes processGlow {

  0%{
  transform:translate(0,0);
  }

  50%{
  transform:translate(200px,100px);
  }

  100%{
  transform:translate(0,0);
  }
}

/* =========================
LINEAS PROCESS
========================= */
.process-lines {
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  pointer-events:none;
  overflow:hidden;
}

.process-lines::before {
  content:"";
  position:absolute;
  width:100%;
  height:2px;
  top:50%;
  background:linear-gradient(
  90deg,
  transparent,
  rgba(223,6,21,.2),
  transparent
  );
  animation:processLine 6s linear infinite;
}

@keyframes processLine {

  0%{
  transform:translateX(-100%);
  }

  100%{
  transform:translateX(100%);
  }
}


/* =========================
FOOTER
Pie de página
========================= */
.footer {
  background: linear-gradient(135deg, #231815, #1a120f);
  color: white;
  padding: 80px 20px 30px;
  position: relative;
  overflow: hidden;
}

/* EFECTO GLOW */
.footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(223,6,21,0.2);
  filter: blur(120px);
  bottom: -200px;
  right: -200px;
}

/* CONTENEDOR */
.footer-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* COLUMNAS */
.footer-col {
  max-width: 250px;
}

/* LOGO */
.footer-logo {
  color: #df0615;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* LINKS */
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #df0615;
  transform: translateX(5px);
}

/* REDES */
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  font-size: 18px;
  color: white;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #df0615;
  transform: scale(1.2);
}

/* BOTON */
.btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 25px;
  background: linear-gradient(135deg, #df0615, #b00410);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: .3s;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.btn-footer * {
  pointer-events: none;
}

.btn-footer:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(223,6,21,0.4);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #aaa;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    max-width: 100%;
  }
}


/* =========================
SECCIÓN PROCESO
Cómo funciona el servicio
========================= */
.process {
  padding: 120px 20px;
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  text-align: center;
  position: relative;
}

/* EFECTO DE FONDO */
.process::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(223,6,21,0.1);
  filter: blur(120px);
  bottom: -150px;
  left: -150px;
}

/* CONTENEDOR */
.process-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* CARD */
.process-step {
  background: white;
  padding: 30px;
  width: 240px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: 0.4s;
  position: relative;
}

/* HOVER */
.process-step:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 60px rgba(223,6,21,0.2);
}

/* NUMERO */
.step-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #df0615, #b00410);
  color: white;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 18px;
}

/* TEXTO */
.process-step h4 {
  margin-bottom: 10px;
  color: #231815;
}

.process-step p {
  font-size: 14px;
  color: #555;
}

.process-container::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, #df0615, transparent);
  top: 50%;
  left: 20%;
  z-index: 0;
}


/* =========================
SECCIÓN CONTACTO
Formulario y redes sociales
========================= */
.contact {
  padding: 120px 20px;
  background: linear-gradient(135deg, #231815, #1a120f);
  color: white;
  position: relative;
}

/* EFECTO FONDO */
.contact::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(223,6,21,0.3);
  filter: blur(120px);
  top: -150px;
  right: -150px;
}

/* CONTENEDOR */
.contact-container {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* TEXTO */
.contact-info {
  max-width: 400px;
}

.contact-info h2 {
  font-size: 2.2rem;
}

.contact-info p {
  margin: 20px 0;
  color: #ccc;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* FORM */
.contact-form {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  width: 320px;
}

/* INPUT GROUP */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 14px;
  color: #aaa;
  transition: 0.3s;
}

/* ANIMACION INPUT */
.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: #df0615;
}

/* BOTON */
.btn-contact {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #df0615, #b00410);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(223,6,21,0.4);
}

/* RESPONSIVE */
@media(max-width:768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    width: 100%;
  }
}

/* ICONOS CONTACTO */
.contact-points div {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  color:#ddd;
}

.contact-points i {
  color:#df0615;
}


/* REDES */
.contact-social {
  margin-top:30px;
}

.contact-social h4 {
  margin-bottom:15px;
  color:#fff;
}

.social-contact {
  display:flex;
  gap:15px;
}

.social-contact a {
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.08);
  border-radius:50%;
  color:white;
  font-size:18px;
  transition:.3s;
  backdrop-filter:blur(10px);
}

.social-contact a:hover {
  background:#df0615;
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(223,6,21,.4);
}

/* FORM */
.contact-form {
  background:rgba(255,255,255,0.06);
  padding:40px;
  border-radius:20px;
  backdrop-filter:blur(15px);
  box-shadow:0 15px 40px rgba(0,0,0,.2);
}

/* INPUT */
.input-group input {
  padding:14px;
  background:rgba(255,255,255,0.08);
  border-radius:10px;
  transition:.3s;
}

.input-group input:focus {
  background:rgba(255,255,255,0.15);
}


/* =========================
PAGINAS SOPORTE
========================= */
/* HERO */
.support-hero {
  padding:120px 20px;
  background:linear-gradient(135deg,#231815,#1a120f);
  color:white;
  text-align:center;
}

.support-hero h1 {
  font-size:2.5rem;
  margin-bottom:10px;
}

/* CONTENIDO */
.support {
  padding:100px 20px;
  background:#f7f7f7;
}

.support-container {
  width:90%;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.support-card {
  background:white;
  padding:30px;
  border-radius:15px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
  transition:.3s;
}

.support-card:hover {
  transform:translateY(-10px);
}

.support-card i {
  font-size:28px;
  color:#df0615;
  margin-bottom:15px;
}

/* CONTACTO */
.support-contact {
  padding:80px 20px;
  text-align:center;
  background:white;
}

.btn-support {
  display:inline-block;
  margin-top:20px;
  background:#df0615;
  color:white;
  padding:14px 30px;
  border-radius:50px;
  text-decoration:none;
  transition:.3s;
}

.btn-support:hover {
  transform:translateY(-3px);
}

/* TERMINOS */
.terms {
  padding:120px 20px;
  background:white;
}

.terms-container {
  width:80%;
  margin:auto;
  max-width:900px;
}

.terms h1 {
  margin-bottom:30px;
}

.terms h3 {
  margin-top:25px;
  color:#df0615;
}

.terms p {
  color:#555;
  line-height:1.6;
}

.support-header {
  padding:20px 40px;
  background:white;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  position:sticky;
  top:0;
  z-index:100;
}

.btn-back {
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#231815;
  font-weight:600;
  padding:10px 18px;
  border-radius:30px;
  transition:.3s;
  background:#f5f5f5;
}

.btn-back:hover {
  background:#df0615;
  color:white;
  transform:translateX(-3px);
}

