/*
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
 |l|i|g|h|t|-|d|a|r|k|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
*/
:root {
  --bg: #fff;
  --text: #333;
  --color-card: #ffffff;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --gradient-light: linear-gradient(to right, #ccdded 0%, #ffffff 60%);
  --gradient-dark: linear-gradient(to right, #ccdded 0%, #B8B8B8 60%);
}

[data-theme="light"] .nav-item a {
  color: #fff;
}

[data-theme="dark"] {
  --bg: #24292e;
  --text: #fff;
  --color-card: #1a1a1a;
  --color-shadow: rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .nav-item:nth-child(2) a,
[data-theme="dark"] .nav-item:nth-child(3) a {
  color: #fff;
}

/* Agregado para el degradado dinámico */
[data-theme="light"] .sectionPrimero {
  background: var(--gradient-light);
}

[data-theme="dark"] .sectionPrimero {
  background: var(--gradient-dark);
}

/* Borde en tema claro */
[data-theme="light"] .sectionPrimero {
  border: 2px solid rgba(255, 255, 255, 0.50);
}

/* Sin borde en tema oscuro */
[data-theme="dark"] .sectionPrimero {
  border: none !important;
}

[data-theme="dark"] .sectionSegundo .card {
  background-color: #2f2f2f !important;
  border-color: #3a3a3a;
}

[data-theme="dark"] .sectionSegundo .card p {
  color: #e5e5e5 !important;
}

body {
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.1s, color 0.1s;
}

/* Estilo general del toast */
@keyframes toastFadeIn {
  0% {
    opacity: 0;
    /* Comienza invisible */
    transform: translateY(-20px);
    /* Mueve el toast ligeramente hacia arriba */
  }

  100% {
    opacity: 1;
    /* Se vuelve completamente visible */
    transform: translateY(0);
    /* Vuelve a la posición original */
  }
}

.toast {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 9999;
  background-color: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  width: auto;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 3s ease;
}

.toast.show {
  opacity: 1;
}

/* Cuando el toast se oculta */
.toast.hide {
  opacity: 0;
  /* Invisible al salir */
}



/*
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|s|e|c|t|i|o|n|P|r|i|m|e|r|o|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
*/
/* Define la animación */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Estilo para la palabra "profesionalmente" */
.resaltarTexto {
  font-size: 40px;
  background: var(--Purple-Pink-Gradient-2, linear-gradient(90deg, #53b73f 0%, #58a1d2 43.9%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sectionPrimero {
  position: relative;
  min-height: 100vh;
  /* permite crecer si el contenido lo requiere */
  overflow: visible !important;
  margin: 0 auto 10%;
  padding-left: 150px;
  text-align: left;
  backdrop-filter: blur(15px);
  background: no-repeat right top, var(--gradient-light);
  background-size: 15% auto, cover;
  border: 2px solid rgba(255, 255, 255, 0.50);
}


[data-theme="dark"] .sectionPrimero {
  background: url('/img/Frame 1.svg') no-repeat right top, var(--gradient-dark);
  border: 2px solid transparent !important;
}

/* ANIMACIÓN para el título y subtítulo con un retraso de 2 segundos */
.tituloPrimero,
.botonPrimero,
.parrafoPrimero {
  animation: fadeIn 1s ease-out 1s forwards;
  opacity: 0;
  margin-top: 3%;
  text-align: left !important;
}

.destacado {
  font-size: 100%;
  margin-left: 40px;
}

.tituloPrimero {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  line-height: 110.9%;
  letter-spacing: 1px;
  font-size: 150%;
  font-weight: 600;
  color: #333;
}

.parrafoPrimero {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  line-height: 110.9%;
  letter-spacing: 0;
  text-align: justify;
  text-justify: inter-word;
  max-width: 860px;
  margin-left: 0;
  padding-left: 20px;
  color: #333;
}

.sectionPrimero {
  text-align: left !important;
  font-size: 110%;
  padding-left: 60px !important;
  margin-bottom: 10%;
}

.botonPrimero {
  display: inline-block;
  min-width: 150px;
  padding: 10px 30px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  font-family: 'Arimo', sans-serif;
  font-weight: 600;
  margin-left: 50px;
  margin-bottom: 10px;
  border-radius: 4000px;
  border: 2px solid var(--Color-Pure-Black, #000);
  background: var(--Color-Green-Complete, #53b73f);
  box-shadow: 2px 4px 0px 0px #000;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Hover general */
.botonPrimero:hover {
  background-color: #3b8a36;
  border-color: #3b8a36;
  color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Botón VER PLANES */
#btnVerPlanes {
  text-decoration: none;
  border-color: rgb(43, 20, 20);
  background-color: #28a745;
  /* Verde correcto */
  color: white;
  /* <-- reforzado en el botón por las dudas */
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Hover VER PLANES */
#btnVerPlanes:hover {
  border-color: #333;
  color: white;
}

/* Botón CONTACTO */
#btnContacto {
  display: inline-block;
  text-align: center !important;
  text-decoration: none;
  padding: 10px 30px;
  font-size: 14px !important;
  min-width: 150px;
  cursor: pointer;
  font-family: 'Arimo', sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-left: 50px;
  margin-bottom: 10px;
  border-radius: 4000px;
  border: 2px solid var(--Color-Pure-Black, #000);
  box-shadow: 2px 4px 0px 0px #000;
  border-color: rgb(43, 20, 20);
  color: white;
  background-color: #59a1d2;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Hover CONTACTO */
#btnContacto:hover {
  background-color: #4a89b3;
  border-color: #4a89b3;
  color: white;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Corrección del hover dentro de .sectionPrimero */
.sectionPrimero .botonPrimero:hover {
  border-color: var(--Color-Pure-Black, #000) !important;
}

.contenedor-planes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  padding: 20px;
}

.contenedor-planes .card {
  width: 260px;
  min-height: 300px;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: rgba(36, 36, 48, 1);
  color: white;
}

.contenedor-planes .card h1 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contenedor-planes .price {
  font-size: 14px;
  color: #007BFF;
  font-weight: bold;
  margin-bottom: 4px;
}

.contenedor-planes .suscribete {
  font-size: 12px;
  font-style: italic;
  margin-bottom: 6px;
}

.contenedor-planes .check {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.contenedor-planes .check-icon {
  display: inline-block;
  margin-right: 2px !important;
  font-size: 12px;
}

.contenedor-planes .descripcionCard {
  font-size: 12px;
  margin: 0;
}

.contenedor-planes .card button {
  margin-top: 10px;
}

.modal-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.subtituloPlanes {
  font-size: 16px;
  margin-bottom: 10px;
}

.modal-backdrop {
  display: none !important;
}

html,
body {
  overflow-x: hidden !important;
}

body.modal-open {
  overflow: hidden !important;
}

html {
  scrollbar-gutter: stable;
}

.modal-dialog {
  max-height: 90vh;
  overflow-y: auto;
}

body.modal-open {
  padding-right: 0px !important;
}

body.modal-open .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1055;
}



[data-theme="dark"] .codigo-vscode span {
  filter: saturate(1.4) contrast(1.15);
}


.img-retrato-superior {
  width: 220px;
  height: 220px;
  position: absolute;
  top: -340px;
  right: 0;
  margin-left: auto;
  margin-right: 40px;
  z-index: 10;
  display: block;
}

/* ================= ICONOS COMUNICACIÓN ================= */

.iconos-comunicacion {
  position: absolute;
  top: -300px;
  right: 40px;
  width: 260px;
  height: 260px;
  pointer-events: none;
}

.iconos-comunicacion .icon {
  position: absolute;
  font-size: 28px;
  opacity: 0.9;
}

/* Colores */
.icon-chat {
  color: #53b73f;
}

/* verde */
.icon-chart {
  color: #4a9bd8;
}

/* azul */
.icon-globe {
  color: #59a1d2;
}

/* celeste */
.icon-shield {
  color: #3f7fc1;
}

/* azul reputación */
.icon-idea {
  color: #6bcf5f;
}

/* verde claro */

/* Posiciones alrededor del retrato */
.icon-chat {
  top: -10px;
  left: 20px;
}

.icon-chart {
  top: -35px;
  right: 10px;
}

.icon-globe {
  top: 120px;
  right: -10px;
}

.icon-shield {
  bottom: 40px;
  /* antes: 10px */
  right: 80px;
}

.icon-idea {
  bottom: 80px;
  left: 40px;
}

.sectionSegundo {
  margin-top: -180px;
  padding-top: 0;
}


.seccion-codigo-completa {
  position: relative;
  width: 100%;
  height: 0;
  overflow: visible;
  z-index: 5;
  top: -40px;
  left: -30px;
}


/*
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|s|e|c|t|i|o|n|S|e|g|u|n|d|o|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
*/

.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: #2d1b4d;
}


.tituloSegundo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}




/*
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|s|e|c|t|i|o|n|T|r|e|s|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
*/

.sectionPresencia {
  width: 100%;
  padding: 6% 6%; /* un poco menos que 8% para que no quede tan aireado */
  background-color: var(--bg);
  transition: background-color 0.3s ease;
}

.contenedorPresencia {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.textoPresencia {
  flex: 1;
}

.tituloPresencia {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.parrafoPresencia {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 600px;
}

.imagenPresencia {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* mejor alineación desktop */
}

.imagenPresencia img {
  width: 100%;
  max-width: 450px; /* tamaño equilibrado desktop */
  height: auto;
  display: block;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {

  .contenedorPresencia {
    flex-direction: column;
    text-align: center;
    gap: 30px; /* reducimos espacio vertical */
  }

  .parrafoPresencia {
    max-width: 100%;
  }

  .imagenPresencia {
    justify-content: center;
    margin-top: 10px;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

  .sectionPresencia {
    padding: 35px 6%; /* reducimos bastante el espacio vertical */
  }

  .tituloPresencia {
    font-size: 1.5rem;
  }

  .parrafoPresencia {
    font-size: 0.95rem;
  }

  .imagenPresencia img {
    max-width: 260px; /* más chico para que no invada */
  }

}


.sectionTercero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5% 0;
  width: 100%;
}

#btnVerMas {
  display: inline-block;
  padding: 0.8em 2em;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4000px;
  border: 2px solid #333;
  background-color: #ccc;
  box-shadow: 2px 4px 0px 0px #000;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  color: #333;
}


#btnVerMas:hover {
  background-color: #bbb !important;
  border-color: #222 !important;
  color: #222 !important;
}


/* Solo afecta modales en modo oscuro */
[data-theme="dark"] .modal-content {
  background-color: #383838 !important;
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] .modal-title {
  color: var(--text);
}

[data-theme="dark"] .modal-body {
  color: var(--text);
}

.modal-content {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

.btn-close {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.9;
  transform: scale(1);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-close:hover {
  transform: scale(1.15);
  opacity: 1;
}

.btn-close:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}


/*
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|s|e|c|t|i|o|n|C|u|a|r|t|o|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
*/

/* Estilos del Footer */
.site-footer {
  background-color: #1a1a1a;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
}

.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5;
}

.site-footer hr.small {
  margin: 20px 0;
}

.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}

.site-footer a {
  color: #737373;
}

.site-footer a:hover {
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  display: block;
}

.footer-links a {
  color: #737373;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block;
}

.site-footer .social-icons {
  text-align: right;
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #33353d;
}

.copyright-text {
  margin: 0;
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}


.social-icons a:hover {
  color: #fff;
}

.social-icons a.whatsapp:hover {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.social-icons a.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a.linkedin:hover {
  background: linear-gradient(45deg, #0077B5, #0e76a8);
}

.social-icons a.email:hover {
  background: linear-gradient(45deg, #D44638, #C23B32);
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}

@media (max-width: 576px) {

  .site-footer .social-icons {
    margin-top: 55px; /* bajamos los iconos */
    text-align: center; /* opcional pero queda mejor en mobile */
  }

}


.preload {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Este contenedor estará oculto inicialmente y luego se mostrará con fade-in */
#content.preload {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#content {
  opacity: 1;
  /* Valor por defecto al quitar la clase preload */
}

#btnVerMas {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Elimina márgenes excesivos antes del botón */
#contenedor-boton-vermas {
  margin-top: 0 !important;
  padding-bottom: 40px;
}

#btnVerMas.botonPrimero {
  margin-top: 0 !important;
}

/* Contenedor general */
.shine-container {
  display: inline-block;
}

/* Efecto de brillo sobre el figure */
.shine-effect {
  position: relative;
  display: inline-block;
  margin: 0;
  overflow: hidden;
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .4) 100%);
  transform: skewX(-25deg);
  z-index: 10;
  pointer-events: none;
}

.shine-effect:hover::before,
.shine-effect:active::before {
  animation: shine 0.75s ease-out;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}