
/* styles.css */
:root {

  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;

  --gradient-start: #6ec1e4;
  --gradient-end: #a259e6;

  --bg-color: #181d22;
  --bg-accent-color: #232b33;
  --bg-breadcrumb: #232b33;

  --accent-color: #6ec1e4;
  --dark-accent-color: #4fa0c2;
  
  --dark: #121212;
  --gray: #d1d5db;

  --warning-color: #fbbc05;
  --success-color: #10b981;
  --error-color: #ef4444;

  --secondary-links: #0078a0;
  --text-color: #1c1c1e;
}


html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  background: radial-gradient(ellipse at center, #232b33 0%, #181d22 100%) !important;
  min-height: 100vh;
  color: #fff;
}

body {
  padding-top: 80px; /* Altura del header fijo */
}

section[id] {
  scroll-margin-top: 90px; /* Ajusta según la altura real de tu header */
}

/** Utilidades **/

a {
  color: #1b1b1b !important;
}

.text-white {
  color: #fff !important;
}

.color-primary {
  color: var(--accent-color) !important;
}

.color-yellow {
  color: rgb(230, 230, 61) !important
}

.btn-primary {
  color: var(--bg-color) !important;
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
}

.btn-outline-primary {
  color: var(--accent-color) !important;
  background-color: var(--bg-color) !important;
  border-color: var(--accent-color) !important;
  border-radius: 2em !important;
}

.btn-outline-primary:hover, .btn-primary:hover {
  transform: scale(1.03);
  transition: all 0.2s ease-in-out;
  font-weight: bolder;

}

.btn-gradient {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: #222 !important;
    font-weight: bold;
    border: none;
    border-radius: 2rem !important;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 8px rgba(110,193,228,0.15);
    transition: background 0.3s, color 0.3s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-gradient:hover, .btn-gradient:focus {
    color: #fff !important;
    background: linear-gradient(90deg, var(--gradient-end), var(--gradient-start));
    text-decoration: none;
}

.btn-gradient-toggle {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)) !important;
    border: none !important;
    border-radius: 0.7rem;
    padding: 0.2rem 0.5rem;
    box-shadow: 0 2px 8px rgba(110,193,228,0.15);
    transition: background 0.3s;
}

.btn-gradient-toggle:focus, .btn-gradient-toggle:hover {
    background: linear-gradient(90deg, var(--gradient-end), var(--gradient-start)) !important;
    outline: none !important;
    border: none;
}

.btn-gradient-outline {
    background: transparent;
    color: var(--accent-color) !important;
    font-weight: bold;
    border-radius: 2rem !important;
    padding: 0.5rem 2rem;
    border: 2px solid;
    transition: background 0.3s, color 0.3s;
    box-shadow: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-gradient-outline:hover, .btn-gradient-outline:focus {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: #fff !important;
    text-decoration: none;
    border-image: none;
    border: 2px solid var(--gradient-end);
    border-radius: 2rem !important;
}

.border-grey {
  border: 1px solid rgb(196, 196, 196) !important;
}

.border-accent {
  border: 2px solid var(--accent-color) !important;
}

.border-success {
  border: 2px solid var(--accent-color) !important;
}

.bg-light-accent {
  background-color: var(--bg-accent-color) !important;
}

.bg-grey {
  background-color: var(--bg-breadcrumb) !important;
}

.bg-card-dark {
  background: #232b33 !important;
  border: none !important;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
}

.breadcrumbs > ol {
  background-color: var(--bg-breadcrumb) !important;
}

.breadcrumbs > ol > li > a {
  color: white !important;
}

.breadcrumbs > ol > li > a:hover {
  color: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)) !important;
  text-decoration: none !important;
}

.zoom-hover {
  transition: transform 0.3s ease;
}

.zoom-hover:hover {
  transform: scale(1.03);
}


/* Botones hero compactos y del mismo tamaño */
.home_header_section .btn-gradient,
.home_header_section .btn-gradient-outline {
    border-radius: 2rem !important;
    font-size: 1.08rem;
    padding: 0.55rem 1.5rem;
    min-width: 180px;
    max-width: 320px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*** HEADER **/
header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1050;
  background: #232b33;
  transition: background 0.3s;
}
header.fixed-header.scrolled {
  background: rgba(35, 43, 51, 0.75); /* Fondo semitransparente */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(110,193,228,0.08);
  transition: background 0.3s;
}
nav {
  background-color: transparent !important;
}

.header_logo {
  width: 120px;
  height: 60px;
}

/* Iconos de servicios */
.service-icon-circle {
  width: 80px !important;
  height: 80px !important;
  background: #232b33;
  border-radius: 50%;
  border: 3px solid #6ec1e4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-circle i {
  color: #6ec1e4 !important;
  font-size: 2.5rem !important;
}

.service-link {
  color: #6ec1e4 !important;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.service-link:hover {
  color: #4fa0c2 !important;
  text-decoration: underline;
}
.service-icon-circle {
  width: 90px !important;
  height: 90px !important;
  background: #232b33;
  border-radius: 50%;
  border: 4px solid #6ec1e4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-circle i {
  color: #6ec1e4 !important;
  font-size: 2.7rem !important;
}

/* Icono de equipo */
.team-icon {
  width: 90px;
  height: 90px;
  background: #232b33;
  border-radius: 50%;
  border: 4px solid #6ec1e4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.team-icon i {
  color: #6ec1e4 !important;
  font-size: 3.5rem !important;
}

.member-card {
  min-height: 340px !important;
  height: 340px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.member-role {
  color: #6ec1e4;
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Tarjetas de equipo */
.team-card {
    background: #212733;
    border-radius: 28px;
    border: 1px solid #232b33;
    min-height: 220px;
    transition: box-shadow 0.18s, transform 0.18s;
}

.team-card:hover {
    box-shadow: 0 4px 20px rgba(110,193,228,0.18);
    transform: translateY(-4px) scale(1);
}

.team-icon-circle {
    width: 64px;
    height: 64px;
    background: #232b33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
}

.team-icon-circle i {
    font-size: 2rem;
    color: var(--accent-color);
}

.team-name {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    display: inline-block;
}

.team-role {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0;
    display: inline-block;
}

.team-desc {
    font-size: 1rem;
    color: #cfd8df;
    margin-top: 0.5rem;
}

.team-phrase-section {
    background: #212733;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.team-phrase-icon {
    font-size: 3rem;
    color: #29506a;
    opacity: 0.7;
}

.team-phrase-blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.team-phrase-text {
    color: #cfd8df;
    font-size: 2.2rem;
    font-style: italic;
    line-height: 1.2;
    font-weight: 400;
}

.team-phrase-footer {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.ready-section {
    width: 100%;
    background: none;
    padding-top: 60px;
    padding-bottom: 60px;
}

.ready-card {
    background: #212733;
    border-radius: 32px;
    max-width: 90vw;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.btn-gradient {
    border-radius: 2rem !important;
    font-size: 1.1rem;
    padding: 0.6rem 2rem;
    min-width: 200px;
    transition: background 0.3s, color 0.3s;
}

.btn-whatsapp {
    background: transparent;
    color: #cfd8df !important;
    border: 2px solid #2e3440;
    border-radius: 2rem !important;
    font-size: 1.1rem;
    min-width: 200px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    box-shadow: none;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp i {
    font-size: 1.4rem;
    color: #25d366;
    transition: color 0.3s;
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
    background: #25d366;
    color: #fff !important;
    border-color: #25d366;
    text-decoration: none;
}

.btn-whatsapp:hover i, .btn-whatsapp:focus i {
    color: #fff;
}

/** FOOTER **/
.footer-magneticux {
  background: #232b33 !important;
}
.bg-magneticux {
  background: #232b33 !important;
}
.btn-magneticux {
  background: #6ec1e4 !important;
  color: #232b33 !important;
  border: none;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-magneticux:hover {
  background: #4fa0c2 !important;
  color: #fff !important;
}

/** HOME **/
.home_header_section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border-bottom: none;
}

.magneticux-logo {
  font-family: 'Nunito', 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 5rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.magneticux-logo .ux {
  color: var(--accent-color);
}
.magneticux-slogan {
  color: #cfd8df;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.home_portal_section {
  height: auto;
}

.service-card {
    background: #212733;
    border-radius: 22px;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.18s, transform 0.18s;
    border: 1px solid #232b33;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 2;
}

.service-card:hover, .service-detail-card:hover {
    box-shadow: 0 2px 15px rgba(110,193,228,0.18);
    transform: translateY(-6px) scale(1);
}

.service-card:hover::before, .service-detail-card::before {
    opacity: 1;
}

.service-icon-circle {
    width: 70px;
    height: 70px;
    background: #232b33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    border: 2px solid rgba(110,193,228,0.12);
    transition: border-color 0.3s;
}

.service-icon-circle i {
    font-size: 2.2rem;
    color: var(--accent-color);
    transition: color 0.3s;
}

.service-card:hover .service-icon-circle {
    border-color: var(--accent-color);
}

.btn-gradient-service {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: #222 !important;
    font-weight: bold;
    border: none;
    border-radius: 1.5rem;
    padding: 0.6rem 1.6rem;
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(110,193,228,0.10);
    transition: background 0.3s, color 0.3s;
    display: inline-block;
    text-align: center;
    text-decoration: none !important;
}

.btn-gradient-service:hover, .btn-gradient-service:focus {
    background: linear-gradient(90deg, var(--gradient-end), var(--gradient-start));
    color: #fff !important;
    text-decoration: none !important;
}

.about-icon-circle {
    width: 180px;
    height: 180px;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: border-color 0.3s;
}
.about-icon-circle i {
    font-size: 4rem;
    color: var(--accent-color);
}

.home_header_section {
    min-height: 70vh;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border-bottom: none;
    width: 100%;
}

.magneticux-logo {
    font-family: 'Nunito', 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-size: 5rem;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1.1;
}

.magneticux-logo .ux {
    color: var(--accent-color);
}

.magneticux-slogan {
    color: #cfd8df;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    width: 90vw;
}

#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}

#whatsapp-button:hover {
  background-color: #20b858;
  transform: scale(1.1);
}

/* Tarjetas de detalle de servicios */
.service-detail-card {
    background: #212733;
    border-radius: 28px;
    border: 1px solid #232b33;
    padding: 1.5rem 1.5rem;
    margin-bottom: 1.5rem;
    color: #cfd8df;
}

.service-detail-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-card ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.service-detail-card li {
    margin-bottom: 0.5rem;
    color: #cfd8df;
    font-size: 1rem;
}

.nav-item:hover {
    background: linear-gradient(90deg, var(--gradient-end), var(--gradient-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fa-brands:hover {
    background: linear-gradient(90deg, var(--gradient-end), var(--gradient-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-content-border {
  
  border-top: 6px solid var(--gradient-end);

}

/* Móviles pequeños (teléfonos en vertical) */
@media (max-width: 480px) {

  .footer-magneticux .col-md-6:nth-child(2) {
    display: none; /* Oculta la sección de contacto */
  }

  .footer-magneticux .col-md-6:nth-child(1) {
    margin: 0 auto; /* Centra la sección de logo + redes sociales */
    text-align: center; /* Asegura que el contenido esté centrado */
  }

  .footer-social-icons {
    justify-content: center !important;  
  }

  .navbar-toggler {
    margin-right: 1em !important;
  }

  .navbar-nav {
    gap: 0.5rem !important;
  }
  .btn-gradient {
    width: 100%;
    padding: 0.75rem 0;
    margin-top: 1rem;
  }

  .magneticux-logo {
    font-size: 2.2rem;
  }
  .magneticux-slogan {
    font-size: 1rem;
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
  }
  .home_header_section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .service-card {
    min-height: 260px;
    padding: 1rem;
  }
  .service-icon-circle {
    width: 44px;
    height: 44px;
  }
  .service-icon-circle i {
    font-size: 1.2rem;
  }
  .team-phrase-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .team-phrase-text {
    font-size: 1.1rem;
  }
  .team-phrase-icon {
    font-size: 1.5rem;
  }

  .ready-card {
    padding: 1rem 0.5rem;
  }
  .ready-card h2 {
    font-size: 1.3rem !important;
  }
  .ready-card p {
    font-size: 1rem !important;
  }
  .btn-gradient,
  .btn-whatsapp {
    width: 100% !important;
    min-width: unset !important;
    font-size: 1rem !important;
    padding: 0.8rem 0.3rem !important;
  }
  .btn-whatsapp i {
    font-size: 2rem !important;
    margin-right: 0.8rem !important;
  }

  .about-icon-circle {
    width: 120px;
    height: 120px;
  }

  .service-icon-circle {
    width: 75px !important;
    height: 70px !important;
  }

  .service-icon-circle i {
    font-size: 2.3rem !important;
  }

  .service-link {
    display: none;
  }

  

}


/* Móviles grandes (teléfonos en horizontal) */
@media (min-width: 481px) and (max-width: 767px) {

  .footer-magneticux .col-md-6:nth-child(2) {
    display: none; /* Oculta la sección de contacto */
  }

  .footer-magneticux .col-md-6:nth-child(1) {
    margin: 0 auto; /* Centra la sección de logo + redes sociales */
    text-align: center; /* Asegura que el contenido esté centrado */
  }

  .footer-social-icons {
    justify-content: center !important;  
  }

  .navbar-toggler {
    margin-right: 1em !important;
  }

  .navbar-nav {
    gap: 0.5rem !important;
  }
  .btn-gradient, .btn-whatsapp {
    width: 60%;
    padding: 0.75rem 0;
    margin-top: 1rem;
  }

  .about-icon-circle {
    width: 120px;
    height: 120px;
  }
  .about-icon-circle i {
    font-size: 2.5rem;
  }
  #aboutUs h2 {
    font-size: 2rem !important;
    text-align: center;
  }
  #aboutUs p {
    font-size: 1rem !important;
    text-align: center;
  }

}


/* Tabletas (pantallas entre 768px y 1024px) */
@media (min-width: 768px) and (max-width: 991px) {
  
  .footer-magneticux .col-md-6:nth-child(2) {
    display: none; /* Oculta la sección de contacto */
  }

  .footer-magneticux .col-md-6:nth-child(1) {
    margin: 0 auto; /* Centra la sección de logo + redes sociales */
    text-align: center; /* Asegura que el contenido esté centrado */
    justify-content: center !important;  
  }

  .footer-social-icons {
    justify-content: center !important;  
  }

  .navbar-nav {
    gap: 0.5rem !important;
  }
  .btn-gradient, .btn-whatsapp {
    width: 100%;
    padding: 0.75rem 0;
    margin-top: 1rem;
  }

  .magneticux-logo {
    font-size: 3rem;
  }
  .magneticux-slogan {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .home_header_section .btn-gradient,
  .home_header_section .btn-gradient-outline {
    min-width: unset;
    max-width: unset;
    font-size: 1rem !important;
    padding: 0.8rem 0.5rem !important;
  }
  .home_header_section .d-flex {
    width: 90% !important;
  }

  #aboutUs .row {
    flex-direction: column !important;
    gap: 2rem !important;
  }
  #aboutUs .col-md-7,
  #aboutUs .col-md-5 {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  #aboutUs h2 {
    font-size: 2rem !important;
    text-align: center !important;
  }
  #aboutUs p {
    font-size: 1.1rem !important;
    text-align: center !important;
  }
  .about-icon-circle {
    margin: 0 auto !important;
    width: 120px !important;
    height: 120px !important;
  }
  .about-icon-circle i {
    font-size: 2.5rem !important;
  }

  .service-card {
    min-height: 320px;
    padding: 1.2rem;
  }
  .service-icon-circle {
    width: 56px;
    height: 56px;
  }
  .service-icon-circle i {
    font-size: 1.6rem;
  }

  .team-card {
    min-height: 0;
    padding: 2rem 1rem;
  }
  .team-icon-circle {
    width: 48px;
    height: 48px;
  }
  .team-icon-circle i {
    font-size: 1.3rem;
  }
  .team-name {
    font-size: 1.1rem !important;
  }
  .team-role {
    font-size: 1rem !important;
  }

  .team-phrase-text {
    font-size: 1.5rem;
  }
  .team-phrase-icon {
    font-size: 2.2rem;
  }

  .ready-card {
    padding: 2rem 1rem;
  }
  .ready-section .d-flex {
    align-items: center !important;
    width: 100%;
  }
  .btn-gradient,
  .btn-whatsapp {
    width: 100% !important;
    min-width: unset !important;
    max-width: unset !important;
    font-size: 1.1rem !important;
    padding: 0.9rem 0.5rem !important;
    margin-bottom: 0 !important;
    justify-content: center !important;
  }
  .btn-whatsapp i {
    font-size: 1.7rem !important;
    margin-right: 0.7rem !important;
  }
  .ready-card h2 {
    font-size: 2rem !important;
  }
  .service-detail-card {
    padding: 1rem 0.7rem;
    border-radius: 18px;
  }
  .service-detail-card h3 {
    font-size: 1.1rem;
  }

}

/* Laptops o pantallas medianas */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Pantallas grandes (escritorios grandes, monitores 1080p o más) */
@media (min-width: 1200px) and (max-width: 2255px) {

  
}