*{margin:0;
  padding:0;
  box-sizing:border-box;
}
body {
   font-family: 'Poppins', sans-serif;
      color: #fff;
      min-height: 100vh;
      background-image: url('server10.jpg');  /* asegurate que la imagen esté en la misma carpeta */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-color: #000; /* por si la imagen no carga */
      position: relative;}
.hamburger{
  position:fixed;
  top:20px;
  left:20px;
  cursor:pointer;
  width:30px;
  height:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  z-index:1001;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;    /* ← evita el scroll horizontal */
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;   /* todos los elementos calculan el ancho correctamente */
  max-width: 100%;       /* ninguna caja se pasa del ancho disponible */
}
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
.hamburger span{display:block;height:4px;width:100%;background:#39ff14;border-radius:2px;transition:0.4s;}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.hamburger.active span:nth-child(2){opacity:0;}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(6px,-6px);}
.side-menu{
  position:fixed;top:0;left:-260px;width:250px;height:100%;
  background:rgba(20,20,20,0.95);backdrop-filter:blur(8px);
  padding-top:100px;transition:0.4s;z-index:1000;
}
.side-menu.show{left:0;}
.side-menu ul{list-style:none;}
.side-menu li{margin:20px 0;text-align:center;}
.side-menu a{text-decoration:none;color:#fff;font-size:1.2rem;transition:color 0.3s;}
.side-menu a:hover{color:#39ff14;}
.hero{
  height:100vh;display:flex;justify-content:center;align-items:center;
  background:#0b0c10;overflow:hidden;position:relative;
}
.hero-image{
  position:relative;max-width:90%;border-radius:20px;overflow:hidden;
  transform:translateX(-100%);opacity:0;
  animation:slideIn 1.5s forwards;
}
.hero-image img{width:100%;display:block;filter:brightness(70%);}
.hero-text{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  color:#fff;text-align:center;
}
.hero-text h1{font-size:3rem;color:#39ff14;text-shadow:0 0 15px #39ff14;}
.hero-text p{font-size:1.2rem;margin-top:10px;}
.section{padding:80px 5%;background:#1f2833;text-align:center;}
.section h2{font-size:2.5rem;margin-bottom:40px;color:#39ff14;text-shadow:0 0 10px #39ff14;}
.cards-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}
.glass-card{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.1);
border-radius:20px;
backdrop-filter:blur(12px);
overflow:hidden;
padding-bottom:20px;
opacity:0;
transform:translateX(100px);
transition:transform 0.8s ease-out, opacity 0.8s ease-out;
}
.glass-card img{
width:100%;height:160px;object-fit:cover;
border-top-left-radius:20px;border-top-right-radius:20px;
}
.glass-card h3{margin:15px 0 5px;font-size:1.2rem;color:#39ff14;}
.glass-card p{padding:0 15px 10px;font-size:0.95rem;}
.from-left{transform:translateX(-100px);}
.from-right{transform:translateX(100px);}
.glass-card.show{
transform:translateX(0);
opacity:1;
}
.footer-personal {
  display: flex;                /* activa flexbox */
  align-items: center;          /* centra verticalmente */
  gap: 1rem;                    /* espacio entre imagen y texto */
  text-align: left;             /* texto alineado a la izquierda */
}

.footer-personal .personal-photo {
  width: 100px;                 /* ajustá el tamaño que quieras */
  height: 100px;
  border-radius: 50%;           /* redondea la foto */
  object-fit: cover;            /* recorta sin deformar */
}

/* Opcional: que en pantallas chicas se apile */
@media (max-width: 600px) {
  .footer-personal {
    flex-direction: column;
    text-align: center;
  }
}
.footer{
background:#0b0c10;
color:#fff;
padding:40px 5%;
font-family: 'Poppins', sans-serif;
}
.footer-container{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
gap:20px;
}
.footer-personal, .footer-certificados, .footer-redes{
flex:1 1 250px;
text-align:center;
}
.footer-personal img.personal-photo{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
margin-bottom:10px;
border:2px solid #39ff14;
}
.footer-certificados .certificados img{
width:100px;
height:auto;
margin:5px;
border-radius:10px;
border:1px solid #39ff14;
}
.footer-redes .social-links{
display:flex;
flex-direction:column;
gap:5px;
margin-top:10px;
}
.footer-redes .social-links a{
color:#39ff14;
text-decoration:none;
transition:0.3s;
}
.footer-redes .social-links a:hover{
text-decoration:underline;
}
.footer-bottom{
text-align:center;
margin-top:30px;
border-top:1px solid rgba(57,255,20,0.5);
padding-top:15px;
font-size:0.9rem;
}
@media(max-width:768px){
.footer-container{
flex-direction:column;
align-items:center;
}
.footer-personal, .footer-certificados, .footer-redes{
text-align:center;
}
}
.hero-bg {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background: url("server11.jpg") center/cover no-repeat;
filter: brightness(60%);
transform: translateX(-100%);
animation: heroBgIn 1.5s forwards;
}
.hero-content {
position: relative;
text-align: center;
color: #fff;
opacity: 0;
transform: translateX(100%);
animation: heroTextIn 1.5s forwards 0.5s;
}
.hero-content h1 {
font-size: 3rem;
color: #39ff14;
text-shadow: 0 0 20px #39ff14;
}
.hero-content p {
font-size: 1.2rem;
margin-top: 10px;
}
@keyframes heroBgIn {
to { transform: translateX(0); }
}
@keyframes heroTextIn {
to { transform: translateX(0); opacity: 1; }
}
#whatsapp {
position: fixed;
bottom: 80px;
right:20px;
z-index: 1400;
}
svg {
width: 80px;
filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
}
circle {
fill: #45a049;25d366
}
path {
fill: #fff;
}
p {
font-family: Sans-serif; Roboto;
color: #black;
}
.cartel-lateral {
transform: translateX(100%);
opacity: 0;
transition: transform 0.8s ease, opacity 0.8s ease;
will-change: transform, opacity;
}
.cartel-lateral.activo {
transform: translateX(0);
opacity: 1;
}
.animated-button {
padding: 12px 20px;
background: #ff4f00;
color: #fff;
font-weight: bold;
border: none;
border-radius: 8px;
text-decoration: none;
cursor: pointer;
position: relative;
overflow: hidden;
transition: 0.4s;
box-shadow: 0 0 8px rgba(255,79,0,0.5);
}
.animated-button::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
transform: rotate(45deg);
transition: all 0.5s;
}
.animated-button:hover::before {
top: -70%;
left: -70%;
width: 240%;
height: 240%;
}
.animated-button:hover {
box-shadow: 0 0 15px rgba(255,79,0,0.8);
transform: scale(1.05);
}
#cookie-banner {
position: fixed;
right: -300px; /* fuera de pantalla */
top: 50%;
transform: translateY(-50%);
width: 250px;
background: #1f2833;
color: #fff;
padding: 20px;
border-radius: 10px 0 0 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
transition: right 0.5s ease;
z-index: 2000;
font-family: 'Poppins', sans-serif;
}
#cookie-banner.show {
right: 0;
}
#cookie-banner p {
font-size: 0.9rem;
margin-bottom: 15px;
}
.cookie-buttons {
display: flex;
justify-content: space-between;
}
.cookie-buttons button {
padding: 8px 12px;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
transition: 0.3s;
}
#accept-cookies { background: #39ff14; color: #000; }
#accept-cookies:hover { background: #32cc0f; }
#reject-cookies { background: #ff4141; color: #fff; }
#reject-cookies:hover { background: #e03a3a; }
#external-banner {
position: fixed;
right: -280px;
top: 50%;
transform: translateY(-50%);
width: 260px;
background: rgba(20,20,20,0.95);
border: 1px solid rgba(57,255,20,0.5);
border-radius: 15px 0 0 15px;
box-shadow: 0 0 20px rgba(0,0,0,0.7);
padding: 20px;
color: #fff;
font-family: 'Poppins', sans-serif;
text-align: center;
transition: right 0.6s ease, opacity 0.6s ease;
z-index: 2000;
opacity: 0;
}
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #111;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1000;
  font-size: 16px;
  transition: background 0.3s;
}
.menu-btn:hover {
  background: #333;
}

 .menu-btn {
      position: fixed;
      top: 12px;
      right: 12px;
      background: #0f1720;
      color: #fff;
      border: none;
      padding: 10px 14px;
      border-radius: 10px;
      cursor: pointer;
      z-index: 1100;
      font-size: 15px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    }
    .menu-btn:active { transform: translateY(1px); }

 /* overlay y panel: z-index cuidadoso para no tapar la X */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 1000;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.panel-webs {
  position: fixed;
  top: 0;
  right: -420px; /* fuera de pantalla */
  width: 380px;
  max-width: 92%;
  height: 100%;
  background: linear-gradient(180deg,#0b0f14,#0f1720);
  color: #e6eef6;
  box-shadow: -12px 0 40px rgba(0,0,0,0.6);
  transition: right .32s cubic-bezier(.2,.9,.2,1);
  z-index: 1010;
  display: flex;
  flex-direction: column;
}
.panel-webs.show { right: 0; }

.panel-header {
  position: relative; /* importante para que el botón X quede por encima */
  padding: 14px 48px 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-header h2 { margin: 0; font-size: 18px; }

.close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  background: transparent;
  color: #e6eef6;
  font-size: 20px;
  line-height: 1;
  padding: 6px;
  cursor: pointer;
  z-index: 1020; /* siempre por encima del overlay */
  user-select: none;
}
.close-btn:active { transform: scale(.98); }
.close-btn:hover { color: #00ffcc; transform: rotate(20deg); }

.links-container {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
}

/* link style */
.links-container a {
  display: block;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #bfeee0;
  background: rgba(255,255,255,0.02);
  transition: background .18s, color .18s, transform .08s;
}
.links-container a:hover {
  background: #00ffcc;
  color: #001914;
  transform: translateY(-3px);
}

/* scrollbar */
.links-container::-webkit-scrollbar { width: 8px; }
.links-container::-webkit-scrollbar-thumb { background: rgba(0,255,204,0.9); border-radius: 6px; }

/* responsive */
@media (max-width: 700px) {
  .panel-webs { width: 78%; }
}

.links-container {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.links-container a {
  color: #00ffcc;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  padding: 8px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}
.links-container a:hover {
  background: #00ffcc;
  color: #000;
}
.links-container::-webkit-scrollbar {
  width: 8px;
}
.links-container::-webkit-scrollbar-thumb {
  background: #00ffcc;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .panel-webs { width: 80%; }
}
#close-banner {
background: #ff4141;
color: #fff;
border: none;
border-radius: 8px;
padding: 8px;
cursor: pointer;
width: 100%;
font-weight: bold;
transition: 0.3s;
box-shadow: 0 0 8px rgba(255,65,65,0.5);
}
#close-banner:hover {
background: #e03a3a;
box-shadow: 0 0 12px rgba(255,65,65,0.7);
}
@media(max-width:768px){
#external-banner {
width: 80%;
right: -90%;
}
#external-banner.show {
right: 0;
}
}
#widgetLateral {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #222;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  width: 300px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}
#widgetLateral.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
#widgetLateral h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #39ff14;
  text-align: center;
}
#widgetLateral .item {
  margin: 6px 0;
}
#cerrar-widget {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  color: #ff4444;
  cursor: pointer;
}
#cerrar-widget:hover {
  color: #ff0000;
}
.item {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
font-size: 14px;
}
.item span {
font-weight: bold;
}
.item:last-child {
margin-bottom: 0;
}
.glass {
backdrop-filter: blur(10px);
background: rgba(255,255,255,0.1);
border-radius: 15px;
}
.etiqueta-fija {
position: fixed;
right: 20px;
bottom: 0px;
width: 50px;  
height: 50px; 
background: rgba(255,255,255,0.9);
box-shadow: 0 4px 12px rgba(0,0,0,0.25);
display: flex;
justify-content: center;
align-items: center;
z-index: 2000;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.etiqueta-fija img {
width: 100%;
height: auto;
}
.etiqueta-fija:hover {
transform: scale(1.05);
box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.anim-fade {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease, transform 0.8s ease;
will-change: opacity, transform;
}
.anim-fade.visible {
opacity: 1;
transform: translateY(0);
}
.contacto{
padding:60px 5%;
background:#1f2023;
color:#fff;
text-align:center;
}
.contacto-container{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
gap:30px;
margin-top:30px;
}
.contact-form{
flex:1 1 300px;
display:flex;
flex-direction:column;
gap:15px;
}
.contact-form input,
.contact-form textarea{
padding:12px;
border-radius:8px;
border:none;
outline:none;
font-size:1rem;
}
.contact-form button{
padding:12px;
background:#39ff14;
color:#000;
font-weight:bold;
border:none;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}
.contact-form button:hover{
background:#32cc0f;
}
.contacto-rapido{
flex:1 1 250px;
text-align:left;
}
.contacto-rapido h3{
margin-bottom:15px;
}
.contacto-rapido p{
margin-bottom:10px;
}
.contacto-rapido a{
color:#39ff14;
text-decoration:none;
}
.contacto-rapido a:hover{
text-decoration:underline;
}
#protector {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.85);
display: flex;
justify-content: center;
align-items: center;
z-index: 99999;
opacity: 0;
pointer-events: none; 
transition: opacity 1s ease;
}
#protector.activo {
opacity: 1;
pointer-events: auto;
}
.protector-contenido {
color: #fff;
text-align: center;
font-family: sans-serif;
animation: pulso 3s infinite;
}
.protector-contenido h2 {
font-size: 3rem;
margin-bottom: 1rem;
}
.protector-contenido p {
font-size: 1.2rem;
}
@keyframes pulso {
0%   { transform: scale(1); }
50%  { transform: scale(1.05); }
100% { transform: scale(1); }
}
/* Botón para abrir */
.toggle-btn {
  position: fixed;
  top: 40%;
  left: 0;
  background: #39ff14;
  color: #000;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 1.4rem;
  z-index: 10001;
  transition: background 0.3s;
}
.toggle-btn:hover {
  background: #2ecc71;
}
.toggle-btn {
  position: fixed;
  top: 40%;
  left: 0;
  background: #39ff14;
  color: #000;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 1.4rem;
  z-index: 14000;
  transition: transform .2s;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.toggle-btn:hover { transform: translateX(3px); }

/* --- Panel lateral --- */
#video-panel {
  position: fixed;
  top: 0;
  left: -370px;              /* oculto por defecto */
  width: 370px;
  max-width: 90%;
  height: 100%;
  background: linear-gradient(180deg,#111,#1a1a1a);
  color: #fff;
  padding: 16px;
  box-sizing: border-box;
  box-shadow: 2px 0 20px rgba(0,0,0,0.6);
  transition: left 0.35s ease;
  z-index: 13999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
#video-panel.open {
  left: 0;
}

/* Botón cerrar */
.close-btn {
  align-self: flex-end;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 8px;
}

/* Contenedor de videos */
.videos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow:auto;
  padding-right: 6px; /* espacio para scrollbar */
}

/* Placeholder (miniatura) antes de crear iframe */
.video-placeholder {
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
/* Botón de apertura */
.toggle-btn {
  position: fixed;
  top: 40%;
  left: 0;
  background: #39ff14;
  color: #000;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  z-index: 10001;
}

/* Panel lateral */
#video-panel {
  position: fixed;
  top: 0;
  left: -360px;      /* oculto al inicio */
  width: 360px;
  height: 100%;
  background: #222;
  padding: 16px;
  box-sizing: border-box;
  transition: left 0.3s ease;
  z-index: 10000;
  overflow-y: auto;
}
#video-panel.open {
  left: 0;
}
.close-btn {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 12px;
}
.videos iframe {
  width: 100%;
  height: 200px;
  border: none;
  margin-bottom: 12px;
}

#welcome-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #2b2e4a, #e84545);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

.welcome-box {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

#welcome-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

#welcome-text {
  font-size: 1.6rem;
  color: #2b2e4a;
  margin-bottom: 1.5rem;
  min-height: 2.5rem; /* evita salto brusco */
}

#start-btn {
  background: #e84545;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
#start-btn:hover {
  background: #d63434;
}
.flash-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 3rem;              /* tamaño del ícono */
  color: #fff;
  background: linear-gradient(135deg, #ff8c00, #ffcc00);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flash-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.flash-btn.active {
  /* Apariencia cuando la linterna está encendida */
  background: linear-gradient(135deg, #ffd700, #ffea00);
  box-shadow: 0 0 25px 8px rgba(255, 255, 100, 0.6);
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Caja de contenido */
.overlay-content {
  background: #222;
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0,255,0,0.3);
  animation: zoomIn 0.6s ease;
  border: 2px solid #39ff14;
}

.overlay-content h2 {
  margin-bottom: 1rem;
  color: #39ff14;
  font-size: 1.6rem;
}

.overlay-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Botón WhatsApp */
.whatsapp-btn {
  display: inline-block;
  background: #39ff14;
  color: #000;
  padding: 12px 18px;
  margin-bottom: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #39ff14;
}

/* Botón cerrar */
.overlay-content button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background: #444;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.overlay-content button:hover {
  background: #666;
}
.programas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1100px;
    margin: auto;
  }

  .card {
    background: #222;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    overflow: hidden;
    position: relative;
  }

  /* Contenido interno animado */
  .card-inner {
    text-align: center;
    padding: 25px;
    opacity: 0;
    transform: translateX(50px); /* empieza desplazado */
    transition: all 0.8s ease;
  }

  /* Animación al entrar */
  .card-inner.animate {
    opacity: 1;
    transform: translateX(0);
  }

  .card img {
    max-width: 90px;
    margin-bottom: 15px;
  }

  .card h3 {
    margin: 12px 0;
    font-size: 1.3rem;
    color: #39ff14;
  }

  .card p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: #ddd;
  }

  .btn {
    display: inline-block;
    padding: 12px 20px;
    background: #39ff14;
    color: #000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
  }

  .btn:hover {
    transform: translateY(-4px);
    background: #32cc12;
  }
  #publicidad {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
  }
  #publicidad.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Caja de contenido */
  .publicidad-box {
    background: #222;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,255,128,0.8);
    max-width: 450px;
    animation: slideDown 0.8s ease forwards;
  }

  @keyframes slideDown {
    from { transform: translateY(-80px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .publicidad-box h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #39ff14;
  }
  .publicidad-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  /* Botón de WhatsApp */
  .btn-whatsapp {
    display: inline-block;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
  }
  .btn-whatsapp:hover {
    transform: scale(1.1);
  }

  /* Botón de cierre */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
  }
 h1 {
      text-align: center;
      margin: 30px 0;
      font-size: 2rem;
      color: #39ff14;
    }

    .programas {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      padding: 40px;
      max-width: 1100px;
      margin: auto;
    }

    .card {
      background: #222;
      border-radius: 15px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.35);
      overflow: hidden;
      position: relative;
    }

    /* Contenido interno animado */
    .card-inner {
      text-align: center;
      padding: 25px;
      opacity: 0;
      transform: translateX(80px); /* por defecto entra desde la derecha */
      transition: all 0.8s ease;
    }

    /* Animación al entrar */
    .card-inner.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .card img {
      max-width: 90px;
      margin-bottom: 15px;
    }

    .card h3 {
      margin: 12px 0;
      font-size: 1.3rem;
      color: #39ff14;
    }

    .card p {
      font-size: 0.95rem;
      margin-bottom: 8px;
      color: #ddd;
      text-align: left;
    }

    .btn {
      display: inline-block;
      padding: 12px 20px;
      background: #39ff14;
      color: #000;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 700;
      transition: transform 0.3s, background 0.3s;
      margin-top: 12px;
    }

    .btn:hover {
      transform: translateY(-4px);
      background: #32cc12;
    }
    :root{
      --bg: #0e0e0e;
      --card: #222;
      --text: #ddd;
      --accent: #39ff14;
      --card-shadow: rgba(0,0,0,0.35);
    }
    h1{
      text-align:center;
      color:var(--accent);
      margin:28px 16px;
      font-size:1.9rem;
    }

    /* Grid contenedor (igual que tu .programas) */
    .programas{
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap:20px;
      padding:40px;
      max-width:1100px;
      margin:0 auto 60px;
    }

    .card{
      background: var(--card);
      border-radius:15px;
      box-shadow: 0 6px 18px var(--card-shadow);
      overflow:hidden;
      position:relative;
      min-height:220px;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    /* Contenido animable (no hay transform por defecto) */
    .card-inner{
      width:100%;
      padding:24px;
      text-align:center;
      opacity:0;
      transition: transform 700ms cubic-bezier(.22,.9,.36,1), opacity 600ms ease;
      /* No poner transform aquí (lo controlan .from-left / .from-right) */
    }

    /* Posición inicial según clase */
    .card-inner.from-right{ transform: translateX(80px); }
    .card-inner.from-left{  transform: translateX(-80px); }

    /* Estado final */
    .card-inner.animate{
      opacity:1;
      transform: translateX(0);
    }

    /* Icono (SVG inline) */
    .icon-svg{
      width:84px;
      height:84px;
      display:block;
      margin:0 auto 14px;
    }

    .card h3{
      margin:10px 0 8px;
      color:var(--accent);
      font-size:1.2rem;
    }

    .card p{
      font-size:0.95rem;
      margin:6px 0;
      color:var(--text);
      text-align:left;
    }

    .card .price{
      display:inline-block;
      margin-top:12px;
      padding:10px 18px;
      border-radius:24px;
      background:var(--accent);
      color:#000;
      font-weight:700;
      text-decoration:none;
    }

    /* Adaptación para móviles: texto centrado en < 420px */
    @media (max-width:420px){
      .card p{ text-align:left; font-size:0.95rem; }
      .programas{ padding:20px; gap:14px; }
    }

    /* Preferencias de reducción de movimiento */
    @media (prefers-reduced-motion: reduce){
      .card-inner,
      .card-inner.animate{
        transition: none;
        transform: none !important;
        opacity: 1 !important;
      }
    }
   .globo-btn {
  position: fixed;
  bottom: 170px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  animation: aparecer 0.8s ease forwards, respirar 3s ease-in-out infinite;
}

/* Botón de llamada */
.llamar {
  bottom: 170px;
}

/* Botón de linterna (más arriba) */
.linterna {
  bottom: 240px;
}

/* Efecto hover */
.globo-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Animaciones */
@keyframes aparecer {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes respirar {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Modo linterna encendida */
.linterna.encendida {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 25px 6px rgba(255, 255, 200, 0.6);
  color: #fffecf;
}
/* 🎨 Estilos del carrusel */
.brand-slider {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 40px 0;
  overflow: hidden;
}

.brand-slider h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #f8f8f8;
  letter-spacing: 1px;
}

.slider {
  height: 120px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 90%;
}

.slide-track {
  display: flex;
  width: calc(250px * 12);
  animation: scroll 25s linear infinite;
}

.slide {
  width: 250px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.slide img {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.slide img:hover {
  transform: scale(1.1);
  filter: brightness(1) invert(0);
}

/* 🔁 Animación de desplazamiento */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 6)); }
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .slide img {
    width: 120px;
  }
}

.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.popup.show {
  visibility: visible;
  opacity: 1;
}

.popup-content {
  background: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px #ff0066;
  max-width: 400px;
  animation: aparecer 0.7s ease;
}

.popup-content img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.popup-content button {
  background: #ff0066;
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.popup-content button:hover {
  background: #ff3385;
}

@keyframes aparecer {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
  body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
  }

  /* CARTEL PRINCIPAL */
  #cartel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    backdrop-filter: brightness(0.5);
    text-shadow: 0 0 10px black;
  }

  #cartel h1 {
    font-size: 2.2em;
    color: #00ffcc;
    margin-bottom: 15px;
  }

  #cartel p {
    font-size: 1.2em;
    max-width: 80%;
    margin-bottom: 20px;
  }

  #cartel button {
    margin: 10px;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    background: #00ffcc;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }

  #cartel button:hover {
    background: #00ccaa;
  }

  #contenido {
    display: none;
    padding: 20px;
  }

  header {
    background-color: rgba(0,0,0,0.6);
    padding: 15px;
  }
footer {
  background: rgba(0,0,0,0.7);
  padding: 15px;
  margin-top: 30px;
  color: #fff;
  text-align: center;
}

/* Sección de certificados */
.certificado {
  display: flex;
  flex-wrap: wrap;         /* Permite que el título ocupe una línea y las fotos otra */
  gap: 15px;               /* Un poquito más de aire entre fotos queda mejor */
  justify-content: center; 
  align-items: center;
  margin: 30px 0;          /* Más margen para que respire el diseño */
}

.certificado h3 {
  flex: 0 0 100%;          /* Fuerza al título a ocupar TODO el ancho siempre */
  text-align: center;
  margin-bottom: 15px;
  font-family: sans-serif; /* O la que uses en tu sitio */
}

.certificado-img {
  width: 180px;            /* Subí un poco el tamaño para que se lean mejor */
  height: auto;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.2); /* Borde más sutil para fondo oscuro */
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  cursor: pointer;         /* Indica que se puede interactuar */
}

.certificado-img:hover {
  transform: scale(1.1);   /* Un toque más de aumento para destacar */
  z-index: 10;             /* Asegura que al agrandarse quede por encima */
}

/* Responsive: Ajuste para celulares */
@media (max-width: 600px) {
  .certificado-img {
    width: 140px;          /* En móviles modernos 100px suele quedar muy chico */
  }
  .certificado {
    gap: 10px;
  }
}


  input, textarea {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
  }

  input[type="submit"] {
    background: #00ffcc;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }

  input[type="submit"]:hover {
    background: #00ccaa;
  }
  #acceso-webs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
  }

  /* CAJA */
  #acceso-webs .box {
    background: #1b1b1b;
    padding: 30px;
    width: 90%;
    max-width: 380px;
    border-radius: 14px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0px 0px 20px rgba(255,255,255,0.1);
  }

  #acceso-webs h2 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #ffffff;
  }

  #acceso-webs p {
    color: #ddd;
  }

  /* INPUT */
  #acceso-webs input {
    width: 90%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #0f0f0f;
    color: white;
    font-size: 16px;
  }

  /* BOTONES */
  #acceso-webs button,
  #acceso-webs a button {
    margin-top: 12px;
    padding: 12px 15px;
    cursor: pointer;
    width: 90%;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    transition: 0.2s;
  }

.btn-grad {
    padding: 14px 28px;
    background: linear-gradient(45deg, #ff0066, #ff9900);
    color: #fff;
    font-size: 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn-grad:hover {
    filter: brightness(1.2);
    transform: scale(1.07);
}
.precio {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.precio-viejo {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
}

.precio-nuevo {
  font-weight: bold;
  color: #fff;
}
.logo { font-weight: bold; font-size: 1.5rem; color: #4285f4; }
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo negro semitransparente */
    display: flex; /* Centra el contenido */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegura que esté por encima de todo */
    opacity: 0; /* Lo hacemos invisible inicialmente */
    visibility: hidden; /* Lo ocultamos completamente */
    transition: opacity 0.3s, visibility 0.3s;
}

/* Clases para mostrar el modal */
.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* La ventana o cartel principal */
.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.9); /* Efecto de escala */
    transition: transform 0.3s;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-content h3 {
    margin-top: 0;
    color: #333;
}

/* Botón de cierre para el cartel */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    line-height: 1;
}

.close-button:hover {
    color: #000;
}
 /* Quita el subrayado azul por defecto de los links */
    .banner-link {
        text-decoration: none;
        display: block;
        cursor: pointer;
    }

    .banner-envios-premium {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
        border-left: 5px solid #005195; 
        border-radius: 12px;
        padding: 25px;
        max-width: 550px;
        margin: 30px auto;
        font-family: 'Segoe UI', sans-serif;
        box-shadow: 0 10px 25px rgba(0, 81, 149, 0.15);
        transition: all 0.3s ease; /* Transición suave para el hover */
        animation: entradaPro 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        opacity: 0;
    }

    /* Efecto al pasar el mouse (como un botón de hardware) */
    .banner-envios-premium:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 81, 149, 0.25);
        border-left: 8px solid #005195;
    }

    .btn-seguimiento {
        display: inline-block;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #005195;
        font-weight: bold;
        text-transform: uppercase;
    }

    /* El resto de los estilos se mantienen iguales */
    .brillo-cristal {
        position: absolute;
        top: 0; left: -150%; width: 50%; height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-25deg);
        animation: reflejo 4s infinite 2s;
    }

    .logo-correo { width: 90px; height: auto; margin-right: 25px; z-index: 1; }
    .texto-envios { z-index: 1; }
    .texto-envios h3 { margin: 0; color: #005195; font-size: 1.3rem; font-weight: 700; }
    .texto-envios p { margin: 5px 0 0; color: #445; font-size: 1rem; }

    @keyframes entradaPro {
        0% { transform: translateX(120%) scale(0.8); opacity: 0; }
        100% { transform: translateX(0) scale(1); opacity: 1; }
    }

    @keyframes reflejo {
        0% { left: -150%; }
        20% { left: 150%; }
        100% { left: 150%; }
    }

    @media (max-width: 480px) {
        .banner-envios-premium { flex-direction: column; text-align: center; margin: 20px 15px; }
        .logo-correo { margin-right: 0; margin-bottom: 15px; }
    }
    .donation-container {
            background-color: #1a1a1a;
            border: 1px solid #39FF14; /* Verde neón */
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            max-width: 400px;
            margin: 20px auto;
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        .donation-text {
            color: #e0e0e0;
            font-size: 14px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .btn-mercadopago {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            color: #39FF14;
            text-decoration: none;
            font-weight: bold;
            font-size: 13px;
            letter-spacing: 1px;
            padding: 12px 20px;
            border: 2px solid #39FF14;
            border-radius: 6px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-mercadopago:hover {
            background-color: #39FF14;
            color: #000;
            box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
            transform: translateY(-2px);
        }

        .icon-mp {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }
          .vms-portfolio {
            padding: 80px 20px;
            background-color: #1a1a1a; /* Fondo oscuro para que resalte la plata y el azul */
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #ffffff;
        }
        .vms-container { max-width: 1100px; margin: 0 auto; text-align: center; }
        .vms-title { font-size: 2.5rem; margin-bottom: 10px; color: #007bff; }
        .vms-subtitle { margin-bottom: 40px; opacity: 0.8; }
        
        .vms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .vms-card {
            background: #252525;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
        }
        .vms-card:hover { transform: translateY(-10px); }

        .vms-img-container {
            position: relative;
            width: 100%;
            height: 250px;
            cursor: pointer;
        }

        .vms-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .vms-after { opacity: 0; }
        
        /* Efecto hover: Al pasar el mouse, cambia la imagen */
        .vms-img-container:hover .vms-after { opacity: 1; }
        .vms-img-container:hover .vms-before { opacity: 0; }

        .vms-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 123, 255, 0.9);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            z-index: 10;
        }

        .vms-info { padding: 20px; text-align: left; }
        .vms-info h3 { font-size: 1.3rem; margin-bottom: 10px; color: #fff; }
        .vms-info p { font-size: 0.9rem; color: #bbb; margin: 0; }

        @media (max-width: 768px) {
            .vms-title { font-size: 2rem; }
        }
        #acceso-webs {
    position: fixed;
    inset: 0;
    background: #000c;
    backdrop-filter: blur(3px);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
  }
  #acceso-webs .box {
    background: #222;
    padding: 25px;
    width: 90%;
    max-width: 350px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 15px #000;
  }
  #acceso-webs input {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
  }
  #acceso-webs button {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #0a84ff;
    color: white;
    font-size: 16px;
  }
  .btn-wpp { background: #25d366 !important; }
  #acceso-webs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
  }

  /* CAJA */
  #acceso-webs .box {
    background: #1b1b1b;
    padding: 30px;
    width: 90%;
    max-width: 380px;
    border-radius: 14px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0px 0px 20px rgba(255,255,255,0.1);
  }

  #acceso-webs h2 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #ffffff;
  }

  #acceso-webs p {
    color: #ddd;
  }

  /* INPUT */
  #acceso-webs input {
    width: 90%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #0f0f0f;
    color: white;
    font-size: 16px;
  }

  /* BOTONES */
  #acceso-webs button,
  #acceso-webs a button {
    margin-top: 12px;
    padding: 12px 15px;
    cursor: pointer;
    width: 90%;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    transition: 0.2s;
  }

  /* BOTÓN NORMAL */
  #acceso-webs button {
    background: #333;
    color: white;
  }

  #acceso-webs button:hover {
    background: #555;
  }

  /* BOTÓN WHATSAPP */
  .btn-wpp {
    background: #25D366;
    color: white !important;
  }

  .btn-wpp:hover {
    background: #1da851;
  }

  /* BOTÓN PRINCIPAL DE LA PÁGINA */
  .btn-principal {
    padding: 12px 20px;
    background: #222;
    color: white;
    border-radius: 8px;
    border: 1px solid #444;
    cursor: pointer;
  }

  .btn-principal:hover {
    background: #333;
  }
   .anydesk-container {
        margin: 20px 0;
        display: flex;
        justify-content: center;
    }

    .anydesk-btn {
        display: flex;
        align-items: center;
        background-color: #ef4437; /* Rojo corporativo de AnyDesk */
        color: white;
        text-decoration: none;
        padding: 12px 25px;
        border-radius: 8px;
        font-family: 'Segoe UI', Tahoma, sans-serif;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 15px rgba(239, 68, 55, 0.3);
    }

    .anydesk-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(239, 68, 55, 0.5);
        background-color: #d83a2e;
    }

    .anydesk-icon {
        width: 35px;
        margin-right: 15px;
        display: flex;
        align-items: center;
    }

    .anydesk-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .anydesk-text span {
        font-weight: bold;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .anydesk-text small {
        font-size: 0.8rem;
        opacity: 0.9;
    }

    /* Estilo para que combine con tu estética oscura si es necesario */
    @media (prefers-color-scheme: dark) {
        .anydesk-btn {
            border: 1px solid rgba(255,255,255,0.1);
        }
    }
    .testimonios-tech {
        background-color: #050a05; /* Azul muy oscuro */
        color: #f1f5f9;
        padding: 60px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .titulo-seccion {
        text-align: center;
        margin-bottom: 40px;
    }

    .titulo-seccion h2 {
        font-size: 2rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #42E736; /* Cian Neon */
    }

    .linea-decorativa {
        height: 3px;
        width: 60px;
        background: #42E736;
        margin: 10px auto;
    }

    .contenedor-opiniones {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .tarjeta-opinion {
        background: #1e293b;
        border: 1px solid #334155;
        border-radius: 12px;
        padding: 25px;
        width: 300px;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .tarjeta-opinion:hover {
        transform: translateY(-10px);
        border-color: #00d4ff;
        box-shadow: 0 10px 20px rgba(0, 212, 255, 0.1);
    }

    .usuario-info {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .avatar-tech {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
        border: 2px solid #00d4ff;
        background-size: cover;
    }

    .usuario-info h4 { margin: 0; font-size: 1.1rem; }
    .usuario-info span { color: #94a3b8; font-size: 0.8rem; }

    .tarjeta-opinion p {
        font-style: italic;
        line-height: 1.6;
        color: #cbd5e1;
    }

    .estrellas {
        color: #fbbf24; /* Color oro/estrella */
        margin-top: 15px;
        font-size: 1.2rem;
    }
     /* Fondo del modal: cubre toda la pantalla */
    .modal-fondo {
        display: none; /* Oculto por defecto */
        position: fixed;
        z-index: 9999; /* Asegura que esté por encima de todo */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semitransparente */
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px); /* Efecto de desenfoque profesional */
    }

    /* Caja blanca central */
    .modal-contenido {
        background-color: #fff;
        padding: 30px;
        border-radius: 12px;
        width: 90%;
        max-width: 500px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        position: relative;
        font-family: sans-serif;
        text-align: center;
    }

    /* Botón de cerrar (X) */
    .cerrar {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        font-weight: bold;
        color: #aaa;
        cursor: pointer;
    }
    .cerrar:hover { color: #000; }

    /* Botón azul inferior */
    .boton-entendido {
        background-color: #000;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 20px;
        transition: background 0.3s;
    }
    .boton-entendido:hover {
        background-color: #333;
    }
     /* Asegúrate de incluir este CSS para que el diseño se mantenga profesional */
    .modal-fondo {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background-color: rgba(0, 0, 0, 0.75);
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(4px);
    }
    .modal-contenido {
        background: #fff;
        padding: 35px;
        border-radius: 15px;
        width: 85%;
        max-width: 450px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        position: relative;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-align: center;
    }
    .cerrar {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: #999;
    }
    .boton-entendido {
        background: #1a1a1a;
        color: #fff;
        border: none;
        padding: 12px 25px;
        border-radius: 6px;
        margin-top: 25px;
        cursor: pointer;
        width: 100%;
        font-weight: bold;
    }
    .boton-entendido:hover { background: #333; }
    .boton-flotante {
    position: fixed;       /* Lo mantiene fijo en la pantalla */
    bottom: 20px;          /* Distancia desde abajo */
    right: 20px;           /* Distancia desde la derecha */
    background-color: #ff9800; /* Un color naranja llamativo */
    color: white;          /* Color del texto */
    padding: 15px 25px;    /* Tamaño del botón */
    border-radius: 50px;   /* Bordes redondeados */
    text-decoration: none; /* Quita el subrayado del link */
    font-weight: bold;     /* Texto en negrita */
    box-shadow: 2px 4px 10px rgba(0,0,0,0.3); /* Sombra para que resalte */
    z-index: 9999;         /* Asegura que esté por encima de todo */
    transition: transform 0.3s ease; /* Efecto suave al pasar el mouse */
}

/* Efecto al pasar el mouse (hover) */
.boton-flotante:hover {
    background-color: #e68a00;
    transform: scale(1.1); /* Se agranda un poquito */
}
/* Contenedor del Botón Flotante */
.fab-container {
    position: fixed;
    bottom: 200px;
    right: 30px;
    z-index: 1000;
}

.fab {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.fab:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.6);
}

.fab-icon { font-size: 1.2rem; }

/* Estilos del Modal Animado */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1e293b;
    margin: 15% auto;
    padding: 2rem;
    border: 2px solid var(--accent-color);
    width: 80%;
    max-width: 400px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    animation: zoomIn 0.3s;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform: scale(0);}
    to {transform: scale(1);}
}
.qr-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.qr-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px); /* Efecto Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.qr-card:hover {
    transform: scale(1.05);
}

.qr-card span {
    display: block;
    font-size: 35px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-family: sans-serif;
}

.qr-card img {
    width: 100px; /* Tamaño ajustable */
    height: 100px;
    display: block;
    border-radius: 10px;
}
/* Botón Principal */
.btn-precios {
  background-color: #000;
  color: #fff;
  padding: 14px 28px;
  border: 2px solid #444;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-precios:hover {
  background-color: #333;
  border-color: #fff;
}

/* El Modal */
.modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  background-color: #1a1a1a;
  color: #fff;
  margin: 2% auto;
  padding: 20px;
  border: 1px solid #333;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
}

.modal-title { color: #fff; margin: 0; }
.modal-subtitle { color: #aaa; margin-bottom: 20px; }

/* Tabla */
.table-container { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th, td {
  border: 1px solid #333;
  padding: 12px;
  text-align: left;
}

th {
  background-color: #333;
  color: #fff;
}

tr:nth-child(even) { background-color: #222; }
tr:hover { background-color: #2a2a2a; }

.close {
  color: #aaa;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover { color: #fff; }
.modal-footer { margin-top: 20px; color: #666; font-style: italic; }