/*
 Theme Name:   Hello NCN
 Template:     astra
 Description:  Tema hijo de Astra para la landing NCN
 Author:       Néstor Pons
 Version:      1.0
*/

:root {
  --ncn-blue-light: #eaf1ff;
  --ncn-accent: #007bff;
  --ncn-gray-light: #f4f7fc;
  --ncn-gray-bubble: #f2f2f2;
  --ncn-green-light: #4FD1C5;

  --ncn-text: #1a1a1a;
  --ncn-maxw: 1200px;
  --ncn-pad: 80px;
  --ncn-primary-500: #000;
  --ncn-primary-200: #062259;
  --ncn-primary-100: #07296B;
  --ncn-primary-80: #B8C9EB;
  --ncn-primary-40: #D7E1F4;
  --ncn-primary-20: #E6ECF8;
  --ncn-white: #FFF;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10vh;
}

#ast-scroll-top {
  display: block;
  width: 150px;
  margin: auto;
  left: 0vh;
  border-radius: 20px;
  opacity: 0.5;
  cursor: pointer;
  bottom: 6px;

}

#menu-item-317457 .menu-link {
  display: none !important;
}

.color-secondary {
  color: var(--ncn-green-light);
}

body {
  color: var(--ncn-text);
  background: #fff;
  margin: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #0b2c6b;
  /* cambia al color de tu cabecera */
}


section {
  min-height: 700px;
  display: flex;
  align-items: center;
}

section .container {
  margin: auto;
}

.site-content .ast-container {
  max-width: inherit !important;
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100%;
}


#landing-ncn {
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--ncn-maxw);
}

.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-flex;
  min-width: 160px;
  display: inline-flex;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--ncn-primary-80) !important;
  color: var(--ncn-primary-100) !important;
}

.btn-primary:hover {
  background-color: var(--ncn-primary-20) !important;
  border-color: var(--ncn-primary-80) !important;
  color: var(--ncn-primary-500) !important;
}

.btn-secondary {
  background-color: var(--ncn-white) !important;
  border: 1px solid var(--ncn-primary-80) !important;
  color: var(--ncn-primary-100) !important;
}

.btn-secondary:hover {
  background-color: var(--ncn-primary-20) !important;
  color: var(--ncn-primary-500) !important;
}
.btn-secondary i{
  color: var(--ncn-green-light) !important;
}

/* Icono del botón */
.btn-icon {
  font-size: 16px;
  display: inline-block;
  line-height: 1;
}

/* Boton navegación */
.ncn-btn-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--ncn-green-light);
  border-radius: 30px;
  color: var(--ncn-text);
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  height: 40px;
}

.ncn-btn-menu i {
  color: var(--ncn-green-light);
  font-size: 15px;
  transition: color 0.3s ease;
}

.ncn-btn-menu:hover {
  background-color: var(--ncn-primary-20);
  color: var(--ncn-primary-500) !important;
  border-color: var(--ncn-primary-80) !important;
}


/* === HERO === */
.ncn-hero {
  background: var(--ncn-primary-100);
  color: #fff;
  padding: 100px 0;
}

.ncn-hero .container {
  width: min(var(--ncn-maxw), 90%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.ncn-hero .text {
  flex: 1 1 450px;
  padding-right: 40px;
}

.ncn-hero h1 {
  color: var(--ncn-white, #FFF);

  /* h/1 */
  font-family: Poppins;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 96px */
}

.ncn-hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.ncn-hero .image img {
  overflow: hidden;
  object-fit: cover;

}

.ncn-hero .btn-group {
  justify-content: flex-start;
  margin-top: 20px;
}


@media (max-width: 768px) {
  .ncn-hero .container {
    justify-content: center;
  }

  .ncn-hero .image {
    margin-top: 30px;
    text-align: center;
  }

  .ncn-hero .btn-group {
    justify-content: center;
  }
}

@media (max-width: 450px) {
  .ncn-hero .image img {
    width: 450px;
  }
}

@media (max-width: 1024px) {
  .ncn-hero {
    padding: 80px 0;
  }

  .ncn-hero h1 {
    font-size: 56px;
  }

  .ncn-hero .text p {
    font-size: 1.05rem;
  }

  .ncn-hero .image img {
    max-width: 420px;
  }
}

/* === Móviles grandes (hasta 768px) === */
@media (max-width: 768px) {
  .ncn-hero .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .ncn-hero .text {
    max-width: 100%;
    padding: 0 20px;
  }

  .ncn-hero h1 {
    font-size: 48px;
    line-height: 1.2;
  }

  .ncn-hero .text p {
    font-size: 1rem;
  }

  .ncn-hero .image {
    text-align: center;
    margin-bottom: 30px;
  }

  .ncn-hero .image img {
    max-width: 400px;
  }

  .ncn-hero .btn-group {
    justify-content: center;
  }
}

/* === Móviles pequeños (hasta 480px) === */
@media (max-width: 480px) {
  .ncn-hero {
    padding: 60px 0;
  }

  .ncn-hero h1 {
    font-size: 38px;
  }

  .ncn-hero .image img {
    max-width: 320px;
  }

  .ncn-hero p {
    font-size: 0.95rem;
  }

  .ncn-hero .btn-group {
    flex-direction: column;
    gap: 10px;
  }

  .ncn-hero .btn {
    width: 100%;
    justify-content: center;
  }
}

/* === PRESENTACIÓN === */
.ncn-presentation {
  background: var(--ncn-blue-light);
  padding: var(--ncn-pad) 0;
}

.ncn-presentation .container {
  width: min(var(--ncn-maxw), 90%);
  margin: 0 auto;
}

.ncn-presentation h2 {
  text-align: center;
  margin-bottom: 50px;
}

.ncn-presentation .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ncn-presentation video {
  max-width: 450px;
  border-radius: 10px;
}

.ncn-presentation {
  background: var(--ncn-blue-light);
  padding: var(--ncn-pad) 0;
}

.ncn-presentation .container {
  width: min(var(--ncn-maxw), 90%);
  margin: 0 auto;
}

.presentation-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.presentation-text {
  flex: 1 1 50%;
}

.presentation-text h2 {
  color: var(--ncn-primary-100);
  font-size: 2rem;
  margin-bottom: 10px;
}

.presentation-text .subtitle {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.presentation-text h3 {
  color: var(--ncn-primary-100);
  margin-bottom: 12px;
}

.presentation-text p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 18px;
}

.presentation-text .btn {
  background: var(--ncn-green-light);
  color: #fff;
  border: none;
  font-weight: 600;
}

.presentation-text .btn:hover {
  background: var(--ncn-accent);
}

.presentation-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.presentation-image img {
  width: 100%;
  max-width: 550px;
}

@media (max-width: 768px) {
  .presentation-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .presentation-image img {
    max-width: 340px;
    margin-bottom: 30px;
  }

  .presentation-text .btn {
    margin-top: 10px;
  }
}


@media (max-width: 425px) {
  .ncn-presentation video {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ======= SECCIÓN: CARACTERÍSTICAS DE LA APP ======= */
.ncn-features {
  background: var(--ncn-white);
  padding: var(--ncn-pad) 0;
}

.ncn-features .container {
  max-width: var(--ncn-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

.ncn-features .image img {
  width: 100%;
  height: auto;
  display: block;
}

.ncn-features .text h2 {
  color: var(--ncn-primary-100);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ncn-features .text .subtitle {
  color: var(--ncn-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ncn-features .feature-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.ncn-features .feature-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  color: var(--ncn-text);
}

.ncn-features .feature-list li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ncn-accent);
}

.ncn-features .btn {
  display: inline-block;
  background: var(--ncn-primary-100);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.ncn-features .btn:hover {
  background: var(--ncn-accent);
}

/* Responsive */
@media (max-width: 900px) {
  .ncn-features .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ncn-features .image {
    order: -1;
  }

  .ncn-features .feature-list li {
    padding-left: 0;
  }

  .ncn-features .feature-list li::before {
    display: none;
  }
}

/* ======= SECCIÓN: KIT DIGITAL ======= */
.ncn-kitdigital {
  background: var(--ncn-blue-light);
  padding: var(--ncn-pad) 0;
}

.ncn-kitdigital .container {
  max-width: var(--ncn-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

.ncn-kitdigital .text h2 {
  color: var(--ncn-primary-100);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.ncn-kitdigital .text .subtitle {
  font-weight: 600;
  color: var(--ncn-accent);
  margin-bottom: 1rem;
}

.ncn-kitdigital .text .question {
  font-weight: 600;
  color: var(--ncn-primary-100);
  margin: 1.5rem 0 1rem;
}

.ncn-kitdigital .benefits,
.ncn-kitdigital .benefits ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  color: var(--ncn-text);
}

.ncn-kitdigital .benefits li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.ncn-kitdigital .benefits li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ncn-accent);
}

.ncn-kitdigital .btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}
.ncn-kitdigital .image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .ncn-kitdigital .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ncn-kitdigital .image {
    order: -1;
  }

  .ncn-kitdigital .benefits li {
    padding-left: 0;
  }

  .ncn-kitdigital .benefits li::before {
    display: none;
  }
}

/* === NOTICIAS === */
.ncn-news {
  background: var(--ncn-blue-light);
  padding: 100px 20px;
  text-align: center;
}

.ncn-news h2, .ncn-news h3{
  color: var(--ncn-primary-100);
  font-weight: 700;
  margin-bottom: 10px;
}

.ncn-news .section-subtitle {
  color: #4d5b78;
  font-size: 1.1em;
  margin-bottom: 1rem;
}

.ncn-news .newsletter-suscription{
  margin-top: 2rem;
  text-align: left;
}

.ncn-news .newsletter-suscription p{
  margin-bottom: 0.5rem;
  color: var(--ncn-primary-100);
}

/* GRID en 3 columnas (por defecto escritorio) */
.news-grid {
  display: flex;
  gap: 1.5rem;
  text-align: left;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Tarjetas */
.news-card {
  flex: 1 1 30%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

/* Títulos */
.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ncn-primary-100);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Fecha y categoría */
.news-meta {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #556b8d;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.news-separator {
  margin: 0 6px;
  opacity: 0.6;
}

/* Extracto */
.news-excerpt {
  color: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Enlace */
.news-link {
  font-weight: 600;
  color: var(--ncn-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.news-link:hover {
  color: var(--ncn-primary-100);
  text-decoration: underline;
}

/* ========================== */
/* === RESPONSIVE RULES === */
/* ========================== */

/* === Tablets (hasta 1024px) === */
@media (max-width: 1024px) {
  .ncn-news {
    padding: 80px 20px;
  }

  .ncn-news .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .news-grid {
    gap: 1.2rem;
  }

  .news-card {
    flex: 1 1 45%;
    max-width: 100%;
  }

  .news-title {
    font-size: 1rem;
  }
}

/* === Móviles grandes (hasta 768px) === */
@media (max-width: 768px) {
  .ncn-news {
    padding: 70px 15px;
  }

  .ncn-news h2 {
    font-size: 1.6rem;
  }

  .ncn-news .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .news-grid {
    flex-direction: column;
    align-items: center;
  }

  .news-card {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }

  .news-meta {
    justify-content: center;
  }

  .news-excerpt {
    font-size: 0.95rem;
  }
}

/* === Móviles pequeños (hasta 480px) === */
@media (max-width: 480px) {
  .ncn-news {
    padding: 60px 10px;
  }

  .ncn-news h2 {
    font-size: 1.4rem;
  }

  .ncn-news .section-subtitle {
    font-size: 0.9rem;
  }

  .news-card {
    padding: 24px;
    max-width: 100%;
  }

  .news-title {
    font-size: 1rem;
  }

  .news-meta {
    font-size: 0.85rem;
  }

  .news-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .news-link {
    font-size: 0.9rem;
  }
}




/* === TESTIMONIOS === */
.ncn-testimonials {
  background-color: var(--ncn-primary-40);
  padding: 80px 20px;
  text-align: center;
}


.ncn-testimonials h2 {
  font-size: 2rem;
  color: #0b2c6b;
  margin-bottom: 50px;
  font-weight: 600;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.testimonial-item {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

.testimonial-item img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #e4ecfa;
}

.testimonial-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 425px) {}

/* === FORMULARIO DE REGISTRO === */

.ncn-signup {
  background: var(--ncn-white);
  padding: 1rem;
}

/* === FOOTER === */
.footer-inner-wrap .f-nav {
  display: none !important;
}

.ncn-footer {
  background-color: #0b2c6b;
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.ncn-footer .container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  margin: 0 0 10px 0;
}

.footer-logo img {
  width: 130px;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 6px;
  border-bottom: 2px solid #39e0b0;
  display: inline-block;
}

.footer-col p {
  color: #d4d8e3;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: #d4d8e3;
}

.footer-col a {
  color: #d4d8e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* === Redes sociales con SVG === */
.footer-socials {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-socials a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 2px solid #39e0b0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-socials a:hover .social-icon {
  background: #39e0b0;
}

.footer-socials a:hover svg path {
  fill: #0b2c6b;
}

.footer-socials span {
  color: #d4d8e3;
  margin-top: 4px;
}

/* === Línea inferior === */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 15px;
  margin-top: 50px;
  font-size: 14px;
  color: #d4d8e3;
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-logo img {
    margin: 0 auto 10px;
  }
}


/* === CONTACTO INMEDIATO === */
.ncn-contact {
  color: #fff;
  padding: 100px 20px;
}

.ncn-contact .contact-text h2 {
  color: var(--ncn-white, #FFF);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 0.9em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ncn-accent);
  margin-bottom: 12px;
}

.ncn-contact h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.contact-subtitle {
  color: #b3c4e6;
  font-size: 1em;
  margin-bottom: 20px;
}

/* Botones principales */
.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}

.btn-chat {
  background: #fff;
  color: var(--ncn-primary-100);
}

.btn-chat:hover {
  background: var(--ncn-accent);
  color: #fff;
}

.btn-call {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-call:hover {
  background: #fff;
  color: var(--ncn-primary-100);
}

/* Imagen */
.contact-image img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ========================== */
/* === RESPONSIVE RULES === */
/* ========================== */

/* === Tablets (hasta 1024px) === */
@media (max-width: 1024px) {
  .ncn-contact {
    padding: 80px 20px;
  }

  .contact-grid {
    gap: 40px;
  }

  .ncn-contact h2 {
    font-size: 1.6rem;
  }

  .contact-subtitle {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .contact-image img {
    max-width: 420px;
  }
}

/* === Móviles grandes (hasta 768px) === */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .ncn-contact {
    padding: 70px 15px;
    background-position: center top;
  }

  .ncn-contact h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .contact-buttons {
    justify-content: center;
    margin-bottom: 30px;
  }

  .btn {
    width: auto;
    min-width: 140px;
    justify-content: center;
  }

  .contact-image img {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* === Móviles pequeños (hasta 480px) === */
@media (max-width: 480px) {
  .ncn-contact {
    padding: 60px 10px;
  }

  .ncn-contact h2 {
    font-size: 1.3rem;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px 0;
  }

  .contact-image img {
    max-width: 300px;
  }
}

/** === GENIALLY === **/
.ncn-genially {
  max-width: 1200px;
  margin: auto;
}

.genially-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* Mantiene proporción 16:9 */
  background-color: #000;
  overflow: hidden;
}

.genially-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Loader centrado */
.genially-loader {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Spinner animado */
.genially-loader .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #00c3ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 12px;
}

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

/* Ocultar con suavidad */
.genially-loader.hide {
  opacity: 0;
  visibility: hidden;
}