 body {
     margin: 0;
     padding: 0;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     /*background: linear-gradient(180deg, #2d3747, #10a9e2);*/
     font-family: system-ui, sans-serif;
 }

 /* ==== CARD HOVER CONTAINER ==== */
 .container {
     display: flex;
     justify-content: center;
     align-items: center;
     perspective: none;
 }

 .card {

     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
     transition: all 0.6s ease;
 }





 /* resto de tu estilo se mantiene igual */
 header img {
     width: 100%;
     border-radius: 12px;
     margin-bottom: 15px;
 }



 .shell {
     max-width: 420px;
     margin: 0 auto;
     padding: 10px;
 }

 .phone {
     background: linear-gradient(180deg, var(--panel), var(--panel-2));
     border: 1px solid rgba(255, 255, 255, .06);
     border-radius: 28px;
     box-shadow: var(--shadow);
     padding: 18px;
     position: relative;
     overflow: hidden;
     border: solid #2d3747;
 }


 .social-column {
     position: fixed;
     right: calc(50% - 230px + 18px);
     display: flex;
     flex-direction: column;
     gap: 15px;
     z-index: 999;
     top: 10px;
 }




 .social-icon {
     width: 50px;
     height: 50px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: white;
     border: 1px solid rgba(255, 255, 255, .12);
     box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
     transition: transform .15s ease, background .15s ease;
     position: relative;
     overflow: hidden;
     cursor: pointer;
 }

 .social-icon:hover {
     transform: scale(1.08);

 }

 .social-icon img {
     width: 60%;
     height: 60%;
     object-fit: contain;
     transition: transform 0.1s ease-out;
     z-index: 2;
     position: relative;
 }

 .social-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
     z-index: 1;
     transition: transform 0.1s ease-out;
 }

 .social-compartir {
     background: linear-gradient(135deg, #25D366, #128C7E);
 }

 .social-payal {
     background: linear-gradient(135deg, #25D366, #128C7E);
 }

 .social-whatsapp {
     background: linear-gradient(135deg, #25D366, #128C7E);
 }

 .social-instagram {
     background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
 }

 .social-facebook {
     background: linear-gradient(135deg, #3b5998, #8b9dc3);
 }

 .social-email {
     background: linear-gradient(135deg, #EA4335, #FBBC05);
 }

 .social-phone {
     background: linear-gradient(135deg, #13aae2, #4285F4)
 }

 .social-galeria {
     background: linear-gradient(135deg, #4285F4, #34A853);
 }

 .social-share {
     background: linear-gradient(135deg, #13aae2, #52b2d5)
 }

 .social-qr {
     background: linear-gradient(135deg, #7792bc, #53b4d8);
 }

 .share-top {
     position: absolute;
     top: 18px;
     right: 18px;
     z-index: 5;
     width: 40px;
     height: 40px;
     display: grid;
     place-items: center;
     border-radius: 10px;
     background: rgb(19 170 226);
     border: 1px solid rgb(45 55 71);
     box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
     color: #e7f0fa;
     cursor: pointer;
     transition: transform .15s ease;
 }

 .share-top:hover {
     transform: scale(1.05);
 }

 header {
     margin: 12px 0 18px;
 }

 .gallery {
     display: grid;
     gap: 12px;
 }

 .photo {
     border-radius: 14px;
     overflow: hidden;
     background: #fff;
     box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
 }

 .photo img {
     width: 100%;
     display: block;
 }

 section {

     text-align: center;
 }

 section h2 {
     font-size: 1.2rem;
     color: var(--ink);
     margin-bottom: 15px;
     text-transform: uppercase;
 }

 /* Servicios */
 .services {
     display: grid;
     gap: 15px;
 }

 .service-card {
     background: rgba(255, 255, 255, .08);
     border-radius: 14px;
     padding: 16px;
     transition: transform .3s ease;
 }

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

 .service-card img {
     width: 50px;
     margin-bottom: 8px;
 }

 /* Slider */
 .slider {
     position: relative;
     overflow: hidden;
     border-radius: 18px;
     margin: 0 auto;
     width: 100%;
     box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
 }

 .slides {
     display: flex;
     transition: transform 0.6s ease;
 }

 .slides img {
     width: 100%;
     border-radius: 18px;
 }

 .slider-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(0, 0, 0, 0.4);
     color: #fff;
     border: none;
     padding: 6px 10px;
     cursor: pointer;
     border-radius: 50%;
 }

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

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

 /* Proceso */
 .process {
     display: grid;
     gap: 14px;
 }

 .step {
     background: rgba(255, 255, 255, .08);
     border-radius: 14px;
     padding: 14px;
 }

 .step span {
     display: block;
     font-size: 1.5rem;
     color: var(--accent);
     margin-bottom: 6px;
 }

 /* Formulario */
 form {
     background: rgba(255, 255, 255, .08);
     border-radius: 14px;
     padding: 18px;
 }

 input,
 textarea {
     width: 100%;
     padding: 8px;
     margin-bottom: 10px;
     border: none;
     border-radius: 8px;
     border: solid #babcbe;
 }

 button.submit {
     background: #0078d7;
     border: none;
     color: #ffffff;
     padding: 10px 18px;
     border-radius: 8px;
     cursor: pointer;
     font-weight: bold;
 }

 button.submit:hover {
     transform: scale(1.05);
 }

 /* Datos de Pago */
 table {
     width: 100%;
     border-collapse: collapse;
     background: rgba(255, 255, 255, 0.08);
     border-radius: 10px;
     overflow: hidden;
 }

 th,
 td {
     padding: 10px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
     text-align: center;
 }

 th {
     background: rgba(255, 255, 255, 0.15);
 }

 /* Quita resaltado en clic, focus o active */
 .social-icon:focus,
 .social-icon:active,
 .social-icon:visited {
     outline: none !important;
     box-shadow: none !important;
     transform: none !important;
 }

 /* Evita que se marque la imagen o se seleccione el contenido */
 .social-icon,
 .social-icon img {
     user-select: none;
     -webkit-tap-highlight-color: transparent;
     /* iOS/Android highlight */
 }



 footer {
     text-align: center;
     color: #9fb1c3;
     font-size: 12px;
     margin-top: 15px;
 }


 /* === Mosaicos tipo Windows 8 === */
 .tiles-container {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;

 }

 .tile-section {
     border-radius: 12px;
     color: #fff;
     text-align: center;

     cursor: pointer;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
 }

 .tile-section:hover {
     transform: scale(1.05);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
 }

 .tile-section ion-icon {
     font-size: 48px;
     margin-bottom: 10px;
     margin-top: 20px;
 }

 .tile-section h2 {
     font-size: 1.2rem;
     text-transform: uppercase;
 }

 /* === Colores tipo Windows 8 === */
 .azul {
     background: #0078D7;
 }

 .verde {
     background: #107C10;
 }

 .amarillo {
     background: #6d6c69;
 }

 .morado {
     background: #68217A;
 }

 .naranja {
     background: #F7630C;
 }

 .rojo {
     background: #E81123;
 }


 .mision-vision {
     display: flex;
     gap: 20px;
     margin: 40px 20px;
 }

 .mision-vision .box {
     flex: 1;
     background: #2d3747;
     color: #fff;
     border-radius: 12px;
     padding: 25px;
     text-align: center;
     box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
 }

 .mision-vision h3 {
     text-transform: uppercase;
     margin-bottom: 10px;
     font-size: 1.2rem;
     color: #10a9e2;
 }

 .mision-vision p {
     color: #e7f0fa;
     line-height: 1.5;
 }


 /* Grid principal */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
     gap: 20px;
     margin-bottom: 40px;
 }

 /* Bloque de servicio */
 .service-block {
     background: #ffffff;
     border-radius: 14px;
     padding: 20px;
     text-align: left;
     transition: 0.3s ease;
 }

 .service-block:hover {
     transform: translateY(-5px);
     background: #e5e4e4;
 }

 .service-block img {
     width: 60px;
     display: block;
     margin-bottom: 12px;
 }

 .service-block h3 {
     color: #0078d7;
     margin-bottom: 8px;
 }

 .service-block p {
     margin-bottom: 10px;
     color: #0078d7;
 }

 .service-block ul {
     margin: 0;
     padding-left: 18px;
     line-height: 1.5;
 }

 /* ===== PAQUETES ===== */
 .paquetes {
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     padding-top: 30px;
 }

 .paquetes h2 {
     text-align: center;
     color: #ffffff;
     margin-bottom: 25px;
     font-size: 1.6rem;
 }

 .paquete-card {
     background: rgba(255, 255, 255, 0.07);
     border-radius: 16px;
     padding: 25px;
     margin-bottom: 25px;
 }

 .paquete-card-2 {
     border-radius: 16px;
     padding: 25px;
     margin-bottom: 25px;
 }

 .paquete-card h3 {
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: #fff;
     font-size: 1.2rem;
     margin-bottom: 10px;
 }

 .paquete-card span {
     color: #2d3747;
     font-weight: bold;
     background: white;
     border-radius: 12px;
     font-size: larger;
     padding: 5px;
 }

 .paquete-card ul {
     margin: 0;
     padding-left: 18px;
     line-height: 1.5;
 }

 .paquete-card .nota {
     font-size: 0.9rem;
     color: #0279d7;
     margin-top: 10px;
     font-style: italic;
 }


 .paquete-card-2 h3 {
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: #0279d7;
     font-size: 1.2rem;
     margin-bottom: 10px;
 }

 .paquete-card-2 span {
     color: #2d3747;
     font-weight: bold;
     background: white;
     border-radius: 12px;
     font-size: larger;
     padding: 5px;
 }

 .paquete-card-2 ul {
     margin: 0;
     padding-left: 18px;
     line-height: 1.5;
 }

 .paquete-card-2 .nota {
     font-size: 0.9rem;
     color: #2d3747;
     margin-top: 10px;
     font-style: italic;
 }



 /* === BOTÓN SUBIR AL INICIO === */
 .scroll-top-btn {
     position: fixed;
     bottom: 100px;
     right: 30px;
     background: #ffffff;
     color: rgb(0 120 215);
     border: none;
     border-radius: 50%;
     width: 55px;
     height: 55px;
     cursor: pointer;
     font-size: 28px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
     display: none;
     /* Oculto hasta hacer scroll */
     align-items: center;
     justify-content: center;
     transition: transform 0.3s ease, opacity 0.3s ease;
     z-index: 2000;
 }

 .scroll-top-btn:hover {
     transform: scale(1.1);
     background: #ffffff;
 }

 .scroll-top-btn.show {
     display: flex;
     opacity: 1;
 }

 /*ffffff*/




 .titlee {
     text-align: center;
     color: #2d3747;
     margin-bottom: 25px;
     font-size: 1.8rem;
 }



 /* === GRID === */
 .containerStartCard {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 25px;
     justify-content: center;
     align-items: stretch;
     margin: 0 auto;
     width: 100%;
 }

 /* === TARJETAS === */
 .StartCard {
     height: 420px;
     background: #111;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
     border-radius: 15px;
     overflow: hidden;
     position: relative;
     cursor: pointer;
     transition: all 0.5s ease;
 }

 /* === TARJETAS === */
 .InvitacionGlow {
     height: 420px;
     background: #111;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
     border-radius: 15px;
     overflow: hidden;
     position: relative;
     cursor: pointer;
     transition: all 0.5s ease;
 }

 .InvitacionMagic {
     height: 420px;
     background: #111;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
     border-radius: 15px;
     overflow: hidden;
     position: relative;
     cursor: pointer;
     transition: all 0.5s ease;
 }

 .InvitacionEclipse {
     height: 420px;
     background: #111;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
     border-radius: 15px;
     overflow: hidden;
     position: relative;
     cursor: pointer;
     transition: all 0.5s ease;
 }


 /* ===== FACE2 (portada) ===== */
 /* === FACE2 === */
 .face2 {
     width: 100%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 15px;
     transition: 0.5s ease;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .face2-texto {
     color: #fff;
     padding: 30px 20px;
     z-index: 2;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     transition: opacity 0.4s ease, transform 0.4s ease;
 }

 .titulo-normal {
     font-size: 1.8rem;
     margin: 0;
     font-weight: 700;
 }

 .subtitulo-normal {
     font-size: 1rem;
     font-weight: 400;
     margin-top: 10px;
     max-width: 90%;
     line-height: 1.4;
 }

 /* === EFECTO AL HOVER === */
 .StartCard:hover .face2 {
     height: 80px;
     border-radius: 0 0 15px 15px;
 }

 /* 🔹 ESTA ES LA CLAVE: oculta totalmente el texto */
 .StartCard:hover .face2-texto {
     opacity: 0;
     transform: translateY(-20px);
     pointer-events: none;
     /* evita clics sobre el texto oculto */
 }

 /* Mostrar contenido */
 .StartCard:hover .face1 {
     bottom: 0;
 }

 /* === EFECTO POR CLIC (para móviles) === */
 .StartCard.active .face2 {
     height: 80px;
     border-radius: 0 0 15px 15px;
 }

 .StartCard.active .face2-texto {
     opacity: 0;
     transform: translateY(-20px);
     pointer-events: none;
 }

 .StartCard.active .face1 {
     bottom: 0;
 }


 /* ===== FACE1 (contenido oculto) ===== */
 .face1 {
     position: absolute;
     bottom: -100%;
     left: 0;
     width: 100%;
     height: 100%;

     color: white;
     padding: 20px;
     box-sizing: border-box;
     border-radius: 15px;
     transition: bottom 0.5s ease;
     overflow-y: auto;
 }

 .StartCard:hover .face1 {
     bottom: 0;
 }

 .InvitacionGlow:hover .face1 {
     bottom: 0;
 }

 .InvitacionMagic:hover .face1 {
     bottom: 0;
 }

 .InvitacionEclipse:hover .face1 {
     bottom: 0;
 }

 /* ===== FONDOS DIFERENTES ===== */
 .StartCard:nth-child(1) .face2 {
     background: linear-gradient(135deg, #10a9e2, #22c6f3);
 }

 .StartCard:nth-child(2) .face2 {
     background: linear-gradient(135deg, #00b09b, #96c93d);
 }

 .StartCard:nth-child(3) .face2 {
     background: linear-gradient(135deg, #3503ad, #f7308c);
 }


 /* ===== FONDOS DIFERENTES ===== */
 .StartCard:nth-child(1) .face1 {
     background: linear-gradient(135deg, #10a9e2, #22c6f3);
 }

 .StartCard:nth-child(2) .face1 {
     background: linear-gradient(135deg, #00b09b, #96c93d);
 }

 .StartCard:nth-child(3) .face1 {
     background: linear-gradient(135deg, #3503ad, #f7308c);
 }


 /* ===== FONDOS DIFERENTES INVITACIONES ===== */

 /* ===== FONDOS DIFERENTES ===== */
 .InvitacionGlow:nth-child(1) .face1 {
     background: linear-gradient(135deg, #FFD166, #FF6F61);
 }

 .InvitacionMagic:nth-child(2) .face1 {
     background: linear-gradient(135deg, #9B5DE5, #F15BB5, #FEE440);
 }

 .InvitacionEclipse:nth-child(3) .face1 {
     background: linear-gradient(135deg, #0B0B12, #F2C14E);
 }

 /* 💛 Invitación Brillo — cálida, alegre, luminosa */
 .InvitacionGlow:nth-child(1) .face2 {
     background: linear-gradient(135deg, #FFD166, #FF6F61);
     /* Amarillo → Coral */
 }

 /* 🌈 Invitación Magic — moderna, vibrante, mágica */
 .InvitacionMagic:nth-child(2) .face2 {
     background: linear-gradient(135deg, #9B5DE5, #F15BB5, #FEE440);
     /* Morado → Rosa → Amarillo */
 }

 /* 🌘 Invitación Eclipse — elegante, formal, cinematográfica */
 .InvitacionEclipse:nth-child(3) .face2 {
     background: linear-gradient(135deg, #0B0B12, #F2C14E);
     /* Negro azulado → Dorado cálido */
 }

 /* === EFECTO AL HOVER === */
 .InvitacionGlow:hover .face2 {
     height: 80px;
     border-radius: 0 0 15px 15px;
 }

 /* 🔹 ESTA ES LA CLAVE: oculta totalmente el texto */
 .InvitacionGlow:hover .face2-texto {
     opacity: 0;
     transform: translateY(-20px);
     pointer-events: none;
     /* evita clics sobre el texto oculto */
 }

 /* Mostrar contenido */
 .InvitacionGlow:hover .face1 {
     bottom: 0;
 }

 /* === EFECTO POR CLIC (para móviles) === */
 .InvitacionGlow.active .face2 {
     height: 80px;
     border-radius: 0 0 15px 15px;
 }

 .InvitacionGlow.active .face2-texto {
     opacity: 0;
     transform: translateY(-20px);
     pointer-events: none;
 }

 .InvitacionGlow.active .face1 {
     bottom: 0;
 }

 /* === EFECTO AL HOVER === */
 .InvitacionMagic:hover .face2 {
     height: 80px;
     border-radius: 0 0 15px 15px;
 }

 /* 🔹 ESTA ES LA CLAVE: oculta totalmente el texto */
 .InvitacionMagic:hover .face2-texto {
     opacity: 0;
     transform: translateY(-20px);
     pointer-events: none;
     /* evita clics sobre el texto oculto */
 }

 /* Mostrar contenido */
 .InvitacionMagic:hover .face1 {
     bottom: 0;
 }

 /* === EFECTO POR CLIC (para móviles) === */
 .InvitacionMagic.active .face2 {
     height: 80px;
     border-radius: 0 0 15px 15px;
 }

 .InvitacionMagic.active .face2-texto {
     opacity: 0;
     transform: translateY(-20px);
     pointer-events: none;
 }

 .InvitacionMagic.active .face1 {
     bottom: 0;
 }

 /* === EFECTO AL HOVER === */
 .InvitacionEclipse:hover .face2 {
     height: 80px;
     border-radius: 0 0 15px 15px;
 }

 /* 🔹 ESTA ES LA CLAVE: oculta totalmente el texto */
 .InvitacionEclipse:hover .face2-texto {
     opacity: 0;
     transform: translateY(-20px);
     pointer-events: none;
     /* evita clics sobre el texto oculto */
 }

 /* Mostrar contenido */
 .InvitacionEclipse:hover .face1 {
     bottom: 0;
 }

 /* === EFECTO POR CLIC (para móviles) === */
 .InvitacionEclipse.active .face2 {
     height: 80px;
     border-radius: 0 0 15px 15px;
 }

 .InvitacionEclipse.active .face2-texto {
     opacity: 0;
     transform: translateY(-20px);
     pointer-events: none;
 }

 .InvitacionEclipse.active .face1 {
     bottom: 0;
 }

 /* === RESPONSIVE === */
 @media (max-width: 1024px) {
     .containerStartCard {
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 20px;
     }
 }

 @media (max-width: 768px) {
     .containerStartCard {
         grid-template-columns: 1fr;
         gap: 20px;
     }
 }


 .redirect-button {
     padding: 10px 10px;
     background: linear-gradient(90deg, #ffffff, #ffffff);
     color: #2d3747;
     border-radius: 12px;
     font-weight: bold;
     text-decoration: none;
     animation: pulse 1.8s infinite;
     display: inline-block;
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 10px rgba(16, 169, 226, 0.6);
     }

     50% {
         box-shadow: 0 0 25px rgba(34, 198, 243, 0.9);
     }

     100% {
         box-shadow: 0 0 10px rgba(16, 169, 226, 0.6);
     }
 }


 .timeline-section {
     background: rgba(0, 0, 0, 0.6);
     padding: 60px 20px;
     border-radius: 20px;
     text-align: center;
     color: #e7f0fa;
     overflow: hidden;
 }

 .timeline-section h2 {
     color: #ffffff;
     font-size: 1.8rem;
     margin-bottom: 40px;
     letter-spacing: 1px;
 }

 /* === LINEA CENTRAL === */
 .timeline {
     position: relative;
     max-width: 900px;
     margin: 0 auto;
 }

 .timeline::before {
     content: "";
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 3px;
     height: 100%;
     background: rgba(255, 255, 255, 0.1);
 }

 /* === ITEM === */
 .timeline-item {
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     position: relative;
     margin-bottom: 40px;
     opacity: 0;
     transform: translateY(40px);
     transition: all 0.8s ease;
 }

 .timeline-item.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .timeline-item:nth-child(odd) {
     flex-direction: row-reverse;
     text-align: right;
 }

 .timeline-content {
     background: #ffffff;
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 20px;
     border-radius: 15px;
     
     position: relative;
 }

 .timeline-content h3 {
     color: #2d3747;
     font-size: 1.2rem;
     margin-bottom: 8px;
 }

 .timeline-content p {
     color: #0078d7;
     font-size: 0.95rem;
     line-height: 1.5;
 }

 /* === ICONO === */
 .timeline-icon {
     background: linear-gradient(135deg, #0078d7, #0078d7);
     color: #fff;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.3rem;
     box-shadow: 0 0 20px rgba(16, 169, 226, 0.5);
     position: absolute;
     left: 45%;
     transform: translateX(-50%);
     top: 0;
 }

 /* === RESPONSIVE === */
 @media (max-width: 768px) {
     .timeline::before {
         left: 20px;
     }

     .timeline-item,
     .timeline-item:nth-child(odd) {
         flex-direction: column;
         align-items: flex-start;
         text-align: left;
     }

     .timeline-content {

         margin-left: 60px;
     }

     .timeline-icon {
         left: 20px;

     }
 }


 .formulario-servicio iframe {
     border: none;
     width: 100%;
     height: 900px;
 }

 /*aqui nueva seccion depagos*/

 /* === CONTENEDOR GENERAL === */
 .pagos-wrapper {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 25px;
     margin: 20px 0;
     padding: 10px;
 }

 /* === CONTENEDOR INDIVIDUAL === */
 .pago-container {
     text-align: center;
     background: #f9fbfd;
     border-radius: 15px;
     padding: 20px;
     flex: 1 1 280px;
     max-width: 350px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 /* Texto */
 .pago-texto {
     font-size: 16px;
     color: #0e2237;
     font-weight: 600;
     margin-bottom: 12px;
 }

 /* === IMÁGENES DE MÉTODOS DE PAGO === */
 .metodo-pago {
     width: 100%;
     max-width: 260px;
     height: auto;
     border-radius: 12px;
     transition: all 0.4s ease;
     cursor: pointer;
     border: 3px solid transparent;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
 }

 /* === EFECTO DESTELLO (ACTIVO SIEMPRE) === */
 .glow-stripe {
     animation: pulseStripe 2.2s infinite ease-in-out;
 }

 @keyframes pulseStripe {
     0% {
         box-shadow: 0 0 0px rgba(34, 198, 243, 0),
             0 0 8px rgba(34, 198, 243, 0.3),
             0 0 12px rgba(34, 198, 243, 0.2);
         border-color: rgba(34, 198, 243, 0.3);
     }

     50% {
         box-shadow: 0 0 15px rgba(34, 198, 243, 0.9),
             0 0 40px rgba(34, 198, 243, 0.6),
             0 0 55px rgba(34, 198, 243, 0.3);
         border-color: #22c6f3;
     }

     100% {
         box-shadow: 0 0 0px rgba(34, 198, 243, 0),
             0 0 8px rgba(34, 198, 243, 0.3),
             0 0 12px rgba(34, 198, 243, 0.2);
         border-color: rgba(34, 198, 243, 0.3);
     }
 }

 .glow-paypal {
     animation: pulsePayPal 2.2s infinite ease-in-out;
 }

 @keyframes pulsePayPal {
     0% {
         box-shadow: 0 0 0px rgba(255, 180, 0, 0),
             0 0 8px rgba(255, 180, 0, 0.3),
             0 0 12px rgba(255, 180, 0, 0.2);
         border-color: rgba(255, 180, 0, 0.3);
     }

     50% {
         box-shadow: 0 0 15px rgba(255, 180, 0, 0.9),
             0 0 40px rgba(255, 200, 50, 0.6),
             0 0 55px rgba(255, 220, 100, 0.4);
         border-color: #ffb400;
     }

     100% {
         box-shadow: 0 0 0px rgba(255, 180, 0, 0),
             0 0 8px rgba(255, 180, 0, 0.3),
             0 0 12px rgba(255, 180, 0, 0.2);
         border-color: rgba(255, 180, 0, 0.3);
     }
 }

 /* === EFECTO HOVER / TAP EXTRA === */
 .metodo-pago:active {
     transform: scale(0.97);
     box-shadow: 0 0 25px rgba(34, 198, 243, 0.6);
 }

 /* === RESPONSIVE === */
 @media (max-width: 768px) {
     .pagos-wrapper {

         align-items: center;
     }

     .pago-container {
         max-width: 90%;
     }

     .pago-texto {
         font-size: 15px;
     }
 }



 /* === CONTENEDOR GENERAL === */
 .ejemplo-card {
     background: #ffffff;
     color: #fff;
     border-radius: 18px;
     padding: 15px 10px;
     text-align: center;
     max-width: 400px;
     margin: 30px auto;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }


 /* Contenedor flexible */
 .titulo-precio {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 8px 14px;
     border-radius: 12px;
     color: #fff;
     font-weight: 600;
     text-align: center;
 }

 /* Título */
 .titulo-card {
     margin: 0;
     font-size: 1.1rem;
     color: #fff;
 }

 /* Precio */
 .precio-card {
     background: #fff;
     color: #0e2237;
     padding: 3px 10px;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 700;
 }

 /* 🟢 START CARD */
 .titulo-precio.basico {
     background: linear-gradient(90deg, #10a9e2, #22c6f3);
 }

 /* 🟠 PRO CARD */
 .titulo-precio.intermedio {
     background: linear-gradient(90deg, #00b09b, #96c93d);
 }

 /* 🔴 ELITE CARD */
 .titulo-precio.premium {
     background: linear-gradient(90deg, #3503ad, #f7308c);
 }

 /* 🟢 START CARD */
 .titulo-precio.glow {
     background: linear-gradient(135deg, #FFD166, #FF6F61);
 }

 /* 🟠 PRO CARD */
 .titulo-precio.magic {
     background: linear-gradient(135deg, #9B5DE5, #F15BB5, #FEE440);
 }

 /* 🔴 ELITE CARD */
 .titulo-precio.eclipse {
     background: linear-gradient(135deg, #0B0B12, #F2C14E);
 }





 .container-enlaces {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     /* 4 columnas */
     gap: 15px;
     /* separación entre iconos */
     padding: 20px;
     justify-items: center;
     /* centra cada icono */
     align-items: center;
 }

 /* Tablet – 3 columnas */
 @media (max-width: 768px) {
     .container-enlaces {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 .social-icon i {
     position: relative;
     z-index: 2;
     font-size: 28px;
     color: #ffffff;
     /* cámbialo a blanco si lo quieres blanco */
 }

 /* Contenedor del botón del formulario */
 .formulario-servicio {
     margin: 25px 0 15px;
     text-align: center;
 }

 /* Botón hacia Google Forms */
 .redirect-buttonn {
     background: #0078d7;
     color: #fff;
     padding: 12px 25px;
     border-radius: 35px;
     text-decoration: none;
     font-weight: 600;
     font-size: 15px;
     align-items: center;
     gap: 8px;
     transition: 0.3s ease;
     box-shadow: 0 4px 12px #0078d7;
     text-align: center;
     display: block;
 }

 .redirect-buttonn:hover {
     background: #0078d7;
     transform: translateY(-2px);
     box-shadow: 0 6px 15px #0078d7;
 }

 /* Título arriba del formulario */
 .titulo-formulario {
     margin: 20px 0 15px;
     font-size: 20px;
     color: #2d3747;
     text-align: center;
     font-weight: 700;
 }

 .titulo-llenar {
     margin: 20px 0 15px;
     color: #2d3747;
     text-align: center;
     font-weight: 700;
     display: inline-block;
 }

 /* FORMULARIO */
 .service-block-formulario {
     display: flex;
     flex-direction: column;
     gap: 12px;
     padding: 25px;
     background: #ffffff;
     border-radius: 18px;
     border: 1px solid #e3e7ee;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
 }

 /* Inputs */
 .service-block-formulario input,
 .service-block-formulario textarea {
     width: 100%;
     color: #0B0B12;
     border-radius: 12
 }

 /* Tarjeta general */
 .modal-bank {
     max-width: 480px;
     background: #fff;
     border-radius: 15px;
     padding: 20px;
     color: #333;
 }

 .bank-card {
     background: #f6f8fa;
     padding: 20px;
     border-radius: 15px;
     border: 1px solid #e1e5eb;
 }

 .bank-logo {
     width: 110px;
     margin: 0 auto 15px;
     display: block;
 }

 .bank-section {
     margin-bottom: 18px;
     padding-bottom: 12px;
     border-bottom: 1px solid #d9dde3;
     color: #27324b;
 }

 .copy-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .copy-btn {
     background: #0078ff;
     color: white;
     border: none;
     padding: 6px 12px;
     border-radius: 8px;
     cursor: pointer;
     font-size: 13px;
     transition: 0.2s;
 }

 .copy-btn:hover {
     background: #005fcc;
 }

 /* Pie */
 .bank-footer {
     margin-top: 12px;
     padding: 12px;
     background: #e8f1ff;
     border-radius: 10px;
     font-size: 12px;
     color: #4a4f57;
 }

 /* Toast notification */
 .toast {
     visibility: hidden;
     min-width: 150px;
     background: #0aaf4b;
     color: white;
     text-align: center;
     border-radius: 8px;
     padding: 10px;
     position: fixed;
     left: 50%;
     bottom: 30px;
     transform: translateX(-50%);
     font-weight: bold;
     z-index: 9999;
     opacity: 0;
     transition: opacity .4s ease, bottom .4s ease;
 }

 .toast.show {
     visibility: visible;
     opacity: 1;
     bottom: 50px;
 }

 .bank-logo {
     width: 120px;
     display: block;
     margin: 0 auto 12px;
 }

 .estilo-boton-enviar {
     float: right;
     display: flex;
     padding: 10px 15px;
     background: #0078d7;
     border-radius: 12px;
     font-weight: bold;
     border: solid #ffffff;
     color: white;
 }

 .estilo-boton-enviar:hover {
     background: #0078d7;
     transform: translateY(-2px);
     box-shadow: 0 6px 15px #0078d7;
 }

 /* === MODAL GENERAL — UN SOLO ESTILO PARA TODOS === */
 /* === MODAL GENERAL === */
 .modal {
     display: none;
     /* <--- ESTA LÍNEA ES VITAL */
     position: fixed;
     inset: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(6px);
     justify-content: center;
     align-items: center;
     z-index: 3000;
     animation: fadeIn 0.25s ease;
 }

 /* El resto de tu CSS estaba bien, déjalo igual */
 .modal-content {
     background: #ffffffba;
     border-radius: 20px;
     max-width: 1200px;
     width: 92%;
     max-height: 92vh;
     overflow-y: auto;
     padding: 25px 28px 35px 28px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
     position: relative;
     animation: zoomIn 0.3s ease;
 }

 .modal-header {
     padding: 10px 10px 18px 10px;
     text-align: center;
     color: #fff;
     /* Ojo: si el fondo es blanco, cambia este color a negro o #333 */
     border-bottom: 1px solid rgba(0, 0, 0, 0.1);
     position: relative;
 }

 .modal-title {
     text-align: center;
     color: #2d3747;
     margin: 0;
     margin: 10px;
     padding: 10px;
 }

 .close {
     position: absolute;
     top: 10px;
     right: 0px;
     width: 36px;
     height: 36px;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 22px;
     font-weight: bold;
     color: #333;
     /* Cambiado para contraste */
     background: rgba(0, 0, 0, 0.05);
     border-radius: 50%;
     cursor: pointer;
     transition: 0.2s ease;
     z-index: 10;
 }

 .close:hover {
     background: rgba(0, 0, 0, 0.1);
     color: #d32f2f;
 }

 /* Animaciones */
 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes zoomIn {
     from {
         transform: scale(0.8);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }


 /* === MODAL GALERIA === */
/* === MODAL GALERÍA (fondo) === */
.modal-galeria {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 5000;
    animation: fadeIn 0.25s ease;
}

/* === CONTENEDOR DEL MODAL === */
.galeria-content {
    background: #0e1117;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    padding: 30px 25px 25px 25px;  /* <-- ESTO ES LO QUE FALTABA */
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* === CERRAR === */
.galeria-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 26px;
    cursor: pointer;
    color: white;
    z-index: 10;
    background: rgba(255,255,255,0.15);
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s;
}

.galeria-close:hover {
    background: rgba(255,255,255,0.28);
}

/* === TABS === */
.galeria-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 10px;
    flex-wrap: wrap;
}

.galeria-tabs .tab {
    padding: 8px 14px;
    border: none;
    border-radius: 10px;
    background: #1b212c;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.galeria-tabs .tab:hover {
    background: #2abdeb;
}

.galeria-tabs .tab.active {
    background: #2abdeb;
    color: #0f1419;
    font-weight: 600;
}

/* === CONTADOR === */
.galeria-counter {
    text-align: center;
    font-size: 18px;
    color: #ffffffd0;
    margin-top: -5px;
}

/* === SLIDER === */
.galeria-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    width: 100%;
    height: 55vh;
}

.galeria-slider img {
    max-height: 100%;
    max-width: 90%;
    border-radius: 12px;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

/* === BOTONES DE NAVEGACIÓN === */
.gal-prev, .gal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    width: 48px;
    height: 48px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    border: none;

    font-size: 24px;
    font-weight: bold;

    cursor: pointer;
    background: #00aaff;
    color: white;

    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all .25s ease;
    z-index: 20;
}

/* Botón izquierdo */
.gal-prev {
    left: 10px; 
}

/* Botón derecho */
.gal-next {
    right: 10px;
}

/* Hover */
.gal-prev:hover, .gal-next:hover {
    background: #0088cc;
    transform: translateY(-50%) scale(1.15);
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .gal-prev, .gal-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    
        right: 5px;
    }

    
}

/* === MINIATURAS === */
.galeria-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 5px;
}

.galeria-thumbs img {
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}

.galeria-thumbs img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.galeria-thumbs img.active-thumb {
    border: 2px solid #2abdeb;
    opacity: 1;
}
.qr-modal-img {
    width: 200px;
    height: 200px;
    margin: 10px auto;
    border-radius: 10px;
    display: block;
}