/*
Theme Name: Bantiax Theme
Description: Tema para Bantiax - Actualizado 2026
Author: VIC
Author URI: 
Version: 3.0.0
Tags: tema, vic, moderno, responsive
*/

/* =============================================
   RESET Y BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary:   #0a5c84;
    --color-secondary: #00415F;
    --color-accent:    #e8a020;
    --color-text:      #333333;
    --color-text-light:#666666;
    --color-bg:        #f5f7fa;
    --color-white:     #ffffff;
    --color-border:    #dde1e7;
    --radius:          6px;
    --shadow:          0 2px 8px rgba(0,0,0,0.10);
    --transition:      0.2s ease;
    --font-main:       'Segoe UI', system-ui, -apple-system, sans-serif;
    --max-width:       1000px;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--color-bg);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    display: block;
}

li { list-style: none; }

/* =============================================
   ENLACES
   ============================================= */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--color-accent); }

/* =============================================
   CONTENEDOR PRINCIPAL
   ============================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--color-white);
    box-shadow: var(--shadow);
}

/* =============================================
   HEADER
   ============================================= */
#header {
    background: var(--color-secondary);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

#header h1 a {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}
#header h1 a:hover { color: var(--color-accent); }

#header h2 {
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    font-weight: 400;
}

#headerimage img {
    max-height: 80px;
    width: auto;
    border-radius: var(--radius);
}

/* =============================================
   NAVEGACIÓN
   ============================================= */
#menu {
    background-color: var(--color-primary);
    padding: 0;
    position: relative;
    z-index: 100;
}

#menu .menu-header { margin: 0; }

#menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu ul li {
    position: relative;
}

#menu ul li a {
    display: block;
    color: var(--color-white);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 14px 18px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

#menu ul li a:hover,
#menu ul li.current-menu-item > a {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Submenú */
#menu ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--color-white);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    flex-direction: column;
    z-index: 200;
}

#menu ul li:hover > ul { display: flex; }

#menu ul li ul li a {
    color: var(--color-text);
    padding: 10px 16px;
    font-size: 0.88rem;
}

#menu ul li ul li a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Submenú de tercer nivel */
#menu ul ul li ul {
    top: 0;
    left: 100%;
    border-radius: var(--radius);
}

/* =============================================
   LAYOUT PRINCIPAL
   ============================================= */
.main-wrapper {
    display: flex;
    align-items: flex-start;
    padding: 0;
}

/* =============================================
   CONTENIDO
   ============================================= */
.content {
    flex: 1;
    min-width: 0;
    padding: 28px 24px;
}

/* Artículos */
article {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
    margin-bottom: 28px;
}
article:last-of-type { border-bottom: none; }

article h1,
article h2 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}
article h1 a,
article h2 a {
    color: var(--color-text);
}
article h1 a:hover,
article h2 a:hover {
    color: var(--color-primary);
}

article h3 {
    font-size: 0.82rem;
    color: var(--color-text-light);
    font-weight: 400;
    margin-bottom: 14px;
}
article h3 a { color: var(--color-text-light); }
article h3 a:hover { color: var(--color-primary); }

article p  { padding-bottom: 14px; text-align: justify; }
article ul,
article ol { margin-left: 24px; padding-bottom: 14px; }
.content li { list-style-type: disc; }
.content ol li { list-style: decimal; }

.imgThumb {
    display: block;
    margin-bottom: 14px;
}
.imgThumb img {
    border-radius: var(--radius);
}

.postmetadata {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin-top: 10px;
}

/* =============================================
   SIDEBARS
   ============================================= */
.sidebarLeft,
.sidebarRight {
    width: 200px;
    flex-shrink: 0;
    padding: 24px 14px;
    background: #f9fafb;
    border-left: 1px solid var(--color-border);
}

.sidebarLeft { border-left: none; border-right: 1px solid var(--color-border); }

.sidebarLeft .widget,
.sidebarRight .widget {
    margin-bottom: 28px;
}

.sidebarLeft .widget-title,
.sidebarRight .widget-title,
.sidebarLeft h2,
.sidebarRight h2 {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.sidebarLeft ul,
.sidebarRight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebarLeft ul li,
.sidebarRight ul li {
    padding: 5px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.88rem;
}
.sidebarLeft ul li:last-child,
.sidebarRight ul li:last-child { border-bottom: none; }

/* =============================================
   NAVEGACIÓN DE PAGINADO
   ============================================= */
.navigation {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 4px;
    font-size: 0.88rem;
    border-top: 1px solid var(--color-border);
    margin-top: 10px;
}

/* WP PageNavi */
.wp-pagenavi {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.85rem;
    padding: 14px 0;
    margin: 14px 0;
    border-top: 1px solid var(--color-border);
}
.wp-pagenavi a,
.wp-pagenavi a:link,
.wp-pagenavi a:visited {
    border: 1px solid var(--color-border) !important;
    color: var(--color-primary) !important;
    background: var(--color-white);
    padding: 4px 10px;
    border-radius: 4px;
    transition: background var(--transition);
}
.wp-pagenavi a:hover {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--color-primary) !important;
}
.wp-pagenavi span.current {
    border: 1px solid var(--color-primary) !important;
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    padding: 4px 10px;
    border-radius: 4px;
}
.wp-pagenavi span.pages {
    color: var(--color-text-light) !important;
    border: none !important;
    padding: 4px 0 !important;
}



/* =============================================
   FORMULARIO DE BÚSQUEDA
   ============================================= */
#searchform {
    display: flex;
    gap: 6px;
    padding: 14px 0 20px;
}

#searchform input#s {
    flex: 1;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 0.9rem;
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition);
}
#searchform input#s:focus {
    border-color: var(--color-primary);
}

#searchform input[type="submit"] {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--transition);
}
#searchform input[type="submit"]:hover {
    background: var(--color-accent);
}

/* =============================================
   CONTACT FORM 7
   ============================================= */
.wpcf7 { margin: 20px 0 !important; }
.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 8px 12px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    transition: border-color var(--transition);
    outline: none;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus { border-color: var(--color-primary); }
.wpcf7 input[type=submit] {
    width: auto;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 9px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background var(--transition);
}
.wpcf7 input[type=submit]:hover { background: var(--color-accent); }

/* =============================================
   COMENTARIOS
   ============================================= */
.maincomments { margin-top: 24px; border-top: 2px solid var(--color-border); padding-top: 20px; }
.maincomments h3 { font-size: 1.1rem; margin-bottom: 16px; }

.commentlist { list-style: none; padding: 0; }
.commentlist li { padding: 14px 0; border-bottom: 1px solid var(--color-border); }
.comment-author { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.comment-meta { font-size: 0.78rem; color: var(--color-text-light); margin-bottom: 8px; }
.reply { font-size: 0.82rem; margin-top: 8px; }

#respond { margin-top: 24px; }
#respond h3 { font-size: 1rem; margin-bottom: 14px; }
#respond form p { margin-bottom: 12px; }
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"],
#respond textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 8px 12px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color var(--transition);
}
#respond input:focus,
#respond textarea:focus { border-color: var(--color-primary); }
#respond input[type="submit"] {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius);
    padding: 9px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}
#respond input[type="submit"]:hover { background: var(--color-accent); }

/* =============================================
   ALINEACIONES WP
   ============================================= */
.alignleft  { float: left;  border: none; margin: 0 16px 12px 0; }
.alignright { float: right; border: none; margin: 0 0 12px 16px; }
.aligncenter { display: block; margin: 0 auto 12px; }

/* =============================================
   SHORTCODE CONSTRUCCIÓN
   ============================================= */
.const {
    background: url(images/const.png) no-repeat center top;
    padding-top: 175px;
    text-align: center;
}

/* =============================================
   UTILIDADES
   ============================================= */
.clear { clear: both; }
.clear::after { clear: both; display: block; content: ""; height: 0; visibility: hidden; }

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 900px) {
    .sidebarLeft,
    .sidebarRight { width: 170px; }
}

@media (max-width: 700px) {
    .main-wrapper { flex-direction: column; }

    .sidebarLeft,
    .sidebarRight {
        width: 100%;
        border: none;
        border-top: 1px solid var(--color-border);
        padding: 16px 20px;
    }

    #header { padding: 18px 20px; }
    .content { padding: 20px; }

    #menu ul { flex-direction: column; }
    #menu ul li a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    #menu ul li ul {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0,0,0,0.12);
        border-radius: 0;
    }
    #menu ul li:hover > ul { display: flex; }

    .alignleft,
    .alignright { float: none; display: block; margin: 0 auto 12px; }
}

@media (max-width: 480px) {
    :root { font-size: 15px; }
    #header h1 a { font-size: 1.4rem; }
}


/* =============================================
   BANTIAX — HOME TEMPLATE STYLES
   ============================================= */

/* Variables Bantiax */
:root {
  --bg-deep:    #0a0c0b;
  --bg-base:    #000;
  --bg-mid:     #11141f;
  --bg-elev:    #1a1f2a;
  --bg-edge:    #050606;
  --accent-bx:       #2ecfb3;
  --accent-bx-soft:  #00F3FF;
  --accent-bx-deep:  #1aaa96;
  --brand-green:      #22c55e;
  --brand-green-soft: #4ade80;
  --brand-green-deep: #16a34a;
  --brand-cyan:       #67e8f9;
  --brand-cyan-soft:  #a5f3fc;
  --accent-2:     #c8f04a;
  --surface-1:   rgba(255,255,255,0.04);
  --surface-2:   rgba(255,255,255,0.06);
  --border-mute: rgba(255,255,255,0.10);
  --border-soft: rgba(255,255,255,0.18);
  --border-accent-bx: rgba(46,207,179,0.30);
  --text-bx-1: #ffffff;
  --text-bx-2: rgba(255,255,255,0.70);
  --text-bx-3: rgba(255,255,255,0.45);
  --text-bx-mute: rgba(255,255,255,0.65);
  --footer-deep: #050606;
  --footer-mid:  #0a0c0b;
  --mesh-stroke: rgba(46,207,179,0.18);
}

/* Reset y base para el home */
body.page-template-home {
  background-color: var(--bg-base);
  color: var(--text-bx-1);
  overflow-x: hidden;
  font-family: 'Roboto', 'Segoe UI', system-ui, sans-serif;
}

body.page-template-home h1,
body.page-template-home h2,
body.page-template-home h3,
body.page-template-home h4,
body.page-template-home h5,
body.page-template-home h6 {
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Container Bantiax (sin afectar el .container del tema) */
.bx-container { max-width: 1600px; margin: 0 auto; }
.bx-container-md { max-width: 1200px; margin: 0 auto; }
.bx-container-sm { max-width: 960px; margin: 0 auto; }

/* --- NAV BAR --- */
.bx-nav-bar {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  position: sticky;
  top: 0;
  z-index: 50;
}
.bx-nav-bar.scrolled {
  background: #08221c;
  border-bottom: 1px solid var(--border-mute);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.bx-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bx-logo-wrap { display: flex; align-items: center; gap: 28px; }
.bx-logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.bx-logo-link svg { width: 48px; height: 48px; transition: transform 0.2s; }
.bx-logo-link:hover svg { transform: scale(1.10); }
.bx-wordmark { font-weight: 900; letter-spacing: 0.04em; font-size: 26px; color: #fff; line-height: 1; }
.bx-tagline { font-weight: 500; letter-spacing: 0.32em; font-size: 8.5px; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; }
.bx-nav-links { display: none; }
@media (min-width: 1024px) { .bx-nav-links { display: flex; gap: 32px; list-style: none; padding: 0; margin: 0; } }
.bx-nav-links li a {
  font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.80); text-decoration: none; transition: color 0.2s;
}
.bx-nav-links li a:hover, .bx-nav-links li a.active { color: var(--accent-bx-soft); }
.bx-nav-right { display: flex; align-items: center; gap: 24px; }
.bx-nav-search { padding: 8px; background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.70); transition: color 0.2s; }
.bx-nav-search:hover { color: var(--accent-bx-soft); }
.bx-nav-search svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.bx-nav-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }
.bx-nav-phone { display: none; }
@media (min-width: 640px) { .bx-nav-phone { display: block; } }
.bx-nav-phone span { display: block; font-size: 10px; color: rgba(255,255,255,0.50); text-transform: uppercase; font-weight: 500; }
.bx-nav-phone strong { font-size: 14px; font-weight: 700; color: #fff; }

/* boton al costado en la cabecera */
/* Botón principal de contacto */
.bx-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;                  /* Espacio exacto entre el reloj y el texto */
  background-color: #00F3FF; /* El verde principal de Bantiax */
  color: #000;            /* Texto e icono en blanco */
  padding: 10px 20px;
  border-radius: 15px;        /* Bordes redondeados modernos */
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
  font-size: 16px;
}

.bx-btn-contact .ti{border-radius: 50%;font-size: 27px; color: #000}

/* --- HERO --- */
.bx-hero {
  position: relative; width: 100%; display: flex; align-items: stretch;
  transition: all 0.7s; background-size: cover; background-position: center; overflow: hidden;
  height: 100vh;
  margin-top: calc(-1 * var(--bx-nav-height, 73px));
  padding-top: var(--bx-nav-height, 73px);
}
.bx-hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(10,12,11,0.55) 0%, rgba(10,12,11,0.78) 100%);
}
.bx-hero-body {
  position: relative; z-index: 10; display: flex; flex-direction: column;
  width: 100%; margin-top: auto;
}
@media (min-width: 768px) { .bx-hero-body { flex-direction: row; } }

.bx-service-card {
  position: relative; flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; cursor: pointer; transition: all 0.5s; min-height: 250px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 768px) {
  .bx-service-card { padding: 40px; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.10); min-height: 300px; }
  .bx-service-card:last-child { border-right: none; }
}
.bx-service-card:hover, .bx-service-card.card-init-active {
  background: rgba(120,120,130,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.bx-service-card .card-icon-wrap {
  font-size: 64px; color: var(--accent-bx-soft);
  border-bottom: 2px solid var(--accent-bx-soft); display: inline-block;
  padding-bottom: 8px; margin-bottom: 8px; line-height: 1;
}
.bx-service-card h3 {
  font-size: 18px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; margin-bottom: 12px; transition: color 0.3s;
}
.bx-service-card:hover h3, .bx-service-card.card-init-active h3 { color: var(--accent-bx-soft); }
.bx-card-desc {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s, opacity 0.5s;
}
.bx-service-card:hover .bx-card-desc,
.bx-service-card.card-init-active .bx-card-desc {
  max-height: 160px; opacity: 1;
}
.bx-card-desc p { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.65; }

/* --- ALIADOS --- */
.bx-aliados { background: var(--bg-base); padding: 45px 32px 56px; position: relative; overflow: hidden; }
.bx-aliados-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(46,207,179,0.12) 0%, rgba(34,197,94,0.05) 40%, transparent 70%);
  pointer-events: none;
}
.bx-aliados-title {
  font-weight: 900; font-size: clamp(24px, 4vw, 38px); color: var(--text-bx-1); text-align: center;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 10px; padding: 24px;
}
.bx-aliados-title em { font-style: normal; color: var(--accent-bx-soft); }
.bx-stats-bar {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 64px; background: #000; padding: 28px 40px;
}
.bx-stat { display: flex; align-items: center; gap: 16px; }
.bx-stat-icon { font-size: 48px; color: #fff; }
.bx-stat-icon img { max-width: 75px; }
.bx-stat p { margin: 0; }
.bx-stat .num { font-size: 24px; font-weight: 900; color: #fff; line-height: 1.1; }
.bx-stat .label { font-size: 14px; color: rgba(255,255,255,0.90); }
.bx-stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* Marquee */
.bx-marquee-wrap {
  padding: 20px 0; overflow: hidden; position: relative;
  border-top: 1px solid var(--border-mute); border-bottom: 1px solid var(--border-mute);
}
.bx-marquee-wrap::before, .bx-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.bx-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-base), transparent); }
.bx-marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg-base), transparent); }
.bx-marquee-track { display: flex; animation: bxMarquee 40s linear infinite; width: max-content; }
@keyframes bxMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.bx-marquee-item { display: flex; align-items: center; padding: 14px 32px; }
.bx-partner-logo { width: 180px; height: 60px; display: flex; align-items: center; justify-content: center; padding: 0 10px; }
.bx-partner-logo img { height: 80px; width: auto; max-width: 150px; object-fit: contain; }

/* --- SLIDER / FINTECH LLAVE EN MANO --- */
.bx-slider-section {
  max-width: 1600px; margin: 0 auto; padding: 0 16px;
}
.bx-slider-inner {
  margin: 0 auto; padding: 32px 40px 0;
  border-radius: 40px; background: #0E4F37;
}
.bx-slider-header {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px;
}
@media (min-width: 1024px) { .bx-slider-header { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.bx-slider-eyebrow {
  display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.70); margin-bottom: 12px;
}
.bx-slider-title {
  font-size: clamp(28px,3.5vw,48px); font-weight: 900; line-height: 1.1;
  color: var(--accent-bx-soft); letter-spacing: -0.02em;
}
.bx-slider-cta-btn {
  align-self: flex-start; display: inline-flex; align-items: center;
  padding: 10px 24px; border-radius: 99px; border: 2px solid var(--accent-bx);
  color: var(--accent-bx); font-size: 14px; font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: background 0.2s, color 0.2s; margin-top: 8px;
}
.bx-slider-cta-btn:hover { background: var(--accent-bx); color: var(--bg-deep); }

.bx-slider-body {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; align-items: start;
}
@media (min-width: 1024px) { .bx-slider-body { grid-template-columns: 1.6fr 0.35fr 0.7fr; gap: 40px; } }

.bx-features { display: flex; flex-direction: column; gap: 20px; margin-top: 0; }
.bx-feature { display: flex; align-items: flex-start; gap: 16px; }
.bx-feature-icon, .bx-features .uagb-ifb-icon-wrap {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;margin-right: 20px!important;
}
.bx-feature-icon svg,
.bx-features .uagb-ifb-icon-wrap svg { width: 22px; height: 22px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bx-features article .uagb-ifb-title{ color: #fff!important; font-size: 17px!important; font-weight: 700; margin-bottom: 0px!important; }
.bx-features p  { color: rgba(255,255,255,0.60); font-size: 14px; line-height: 1.6!important; margin-bottom: 1px!important; }

.bx-menu-pills { display: flex; flex-direction: column; gap: 12px; padding-top: 0; }
@media (min-width: 1024px) { .bx-menu-pills { padding-top: 40px; } }
.bx-pill-btn {
  padding: 12px 20px; border-radius: 99px; border: 1px solid var(--border-mute);
  color: #fff; font-size: 14px; font-weight: 600; text-align: center; background: none;
  cursor: pointer; transition: border-color 0.22s, color 0.22s, background 0.22s, transform 0.22s; white-space: nowrap;
}
.bx-pill-btn:hover { border-color: var(--border-soft); transform: translateX(2px); }
.bx-pill-btn.active { border-color: var(--accent-bx-soft); color: var(--accent-bx-soft); background: rgba(46,207,179,0.08); }

.bx-phone-col { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 40px; }
.bx-phone-label { color: #fff; font-size: 22px; font-weight: 900; letter-spacing: -0.01em; text-align: center; white-space: nowrap; }
.bx-phone-crop { overflow: hidden; height: 490px; width: 290px; border-radius: 44px 44px 0 0; }
.bx-phone-frame {
  width: 290px; height: 600px; border-radius: 44px;
  background: linear-gradient(145deg, #1a1a1a 0%, #050505 100%); padding: 10px;
  box-shadow: inset 0 0 0 1.5px #2a2a2a, 0 30px 70px -20px rgba(0,0,0,0.6), 0 0 50px rgba(46,207,179,0.10);
  position: relative;
}
.bx-phone-frame::before {
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 95px; height: 28px; background: #050505; border-radius: 16px; z-index: 20;
}
.bx-phone-screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; position: relative; background: #f3f4f6; }
.bx-slide {
  position: absolute; inset: 0; transform: translateX(100%); opacity: 0;
  transition: transform 650ms cubic-bezier(0.65,0,0.35,1), opacity 350ms ease; will-change: transform, opacity;
}
.bx-slide.is-active  { transform: translateX(0); opacity: 1; z-index: 2; }
.bx-slide.is-leaving { z-index: 1; }
.bx-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- EXPERTISE --- */
.bx-expertise { max-width: 1200px; margin: 80px auto 40px; padding: 0 20px; }
.bx-expertise-eyebrow {
  display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.60); margin-bottom: 16px;
}
.bx-expertise-eyebrow i { font-size: 14px; color: var(--accent-bx-soft); }
.bx-expertise-title { font-size: clamp(26px,3.5vw,42px); font-weight: 900; color: var(--accent-bx-soft); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px; }
.bx-expertise-sub { font-size: 17px; color: rgba(255,255,255,0.70); line-height: 1.6; }

.bx-expertise-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding-top: 55px;
}
@media (max-width: 768px) { .bx-expertise-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .bx-expertise-grid { grid-template-columns: 1fr; } }

.bx-exp-card {
  background: var(--accent-bx-soft); border-radius: 20px;
  padding: 60px 24px 24px; display: flex; flex-direction: column;
  align-items: center; text-align: center; position: relative; margin-top: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bx-exp-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(46,207,179,0.40); }
.bx-exp-card-icon {
  position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--accent-bx-soft); border: 5px solid #000;
  display: flex; align-items: center; justify-content: center;
}
.bx-exp-card-icon i { font-size: 38px; color: #000; }
.bx-exp-card h4 { color: #000; font-size: 15px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
.bx-exp-card p  { color: #000; font-size: 13px; line-height: 1.65; flex: 1; margin: 0; }
.bx-exp-card-footer {
  margin-top: 16px; width: 100%; border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 12px; display: flex; justify-content: flex-start;
}
.bx-exp-card-link {
  width: 34px; height: 34px; border-radius: 8px; background: rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: background 0.2s;
}
.bx-exp-card-link:hover { background: rgba(0,0,0,0.25); }
.bx-exp-card-link i { font-size: 18px; color: #000; }

.bx-expertise-cta {
  margin: 50px auto 10px; max-width: 576px;
  border: 2px solid var(--accent-bx-soft); border-radius: 16px;
  padding: 24px 32px; text-align: center;
}
.bx-expertise-cta p { color: #fff; font-size: 16px; font-weight: 700; line-height: 1.5; margin: 0; }

/* --- NUESTROS SERVICIOS --- */
.bx-servicios { display: flex; justify-content: center; padding: 0 16px; }
.bx-servicios-inner { width: 100%; max-width: 1200px; border-radius: 16px; padding: 32px 32px 40px; }
.bx-servicios-title { text-align: center; color: var(--accent-bx-soft); font-size: clamp(28px,4vw,48px); font-weight: 500; padding-bottom: 6px; letter-spacing: 0.04em; margin-bottom: 32px; }
.bx-servicios-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .bx-servicios-grid { grid-template-columns: repeat(3,1fr); } }
.bx-servicio-item { display: flex; align-items: center; justify-content: center; gap: 16px; }
.bx-servicio-item i { font-size: 48px; color: var(--accent-bx-soft); flex-shrink: 0; }
.bx-servicio-item span { color: #fff; font-size: 20px; font-weight: 500; line-height: 1.4; }

/* --- WHO WE ARE (CONSULTORÍA) --- */
.bx-wwa { max-width: 1600px; margin: 0 auto; padding: 40px 20px 0; }
.bx-wwa-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; align-items: center;
  border: 2px solid var(--accent-bx-soft);
  background: rgba(255,255,255,0.10); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 50px; padding: 28px 24px;
}
@media (min-width: 860px) { .bx-wwa-inner { grid-template-columns: 1fr 1fr; gap: 56px; } }
.bx-wwa-left { position: relative; height: 340px; }
@media (min-width: 860px) { .bx-wwa-left { height: 520px; } }
.bx-wwa-img-main {
  position: absolute; top: 0; left: 40px; width: 68%; height: 66%;
  border-radius: 16px; overflow: hidden; border: 2px solid var(--border-mute);
}
@media (max-width: 860px) { .bx-wwa-img-main { left: 20px; width: 60%; height: 60%; } }
.bx-wwa-img-main img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92); display: block; }
.bx-wwa-img-secondary {
  position: absolute; bottom: 0; right: 0; width: 52%; height: 52%;
  border-radius: 16px; overflow: hidden; border: 2px solid var(--border-mute);
}
@media (max-width: 860px) { .bx-wwa-img-secondary { width: 48%; height: 50%; } }
.bx-wwa-img-secondary img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) brightness(0.85); display: block; }

.bx-wwa-right { position: relative; z-index: 1; }
.bx-wwa-eyebrow { display: flex; align-items: center; gap: 8px; font-size: 20px; margin-bottom: 12px; color: #fff; }
.bx-wwa-title { font-weight: 900; font-size: clamp(28px,3.5vw,46px); line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 18px; color: var(--accent-bx-soft); }
.bx-wwa-sub { font-size: 20px; color: #fff; margin-bottom: 24px; }

.bx-wwa-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; padding: 0 24px; }
.bx-wwa-feat { display: flex; align-items: flex-start; gap: 12px; }
.bx-wwa-feat i { font-size: 40px; flex-shrink: 0; margin-top: 2px; }
.bx-wwa-feat strong { display: block; color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.bx-wwa-feat p { color: rgba(255,255,255,0.70); font-size: 13px; line-height: 1.6; margin: 0; }

.bx-wwa-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; }
.bx-wwa-btn {
  display: flex; align-items: center; border-radius: 99px; text-decoration: none;
  overflow: hidden; background: var(--accent-bx-soft);
  transition: background 0.2s, transform 0.2s; justify-self: center;
}
.bx-wwa-btn:hover { background: var(--accent-bx); transform: translateY(-1px); }
.bx-wwa-btn-text { padding: 14px 24px; font-size: 14px; font-weight: 700; color: var(--bg-deep); white-space: nowrap; }
.bx-wwa-btn-arrow { width: 48px; height: 48px; background: rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; }
.bx-wwa-btn-arrow i { color: var(--bg-deep); font-size: 18px; }
.bx-wwa-years { justify-self: end; border-right: 1px solid rgba(255,255,255,0.10); padding-right: 32px; }
.bx-wwa-years .num { font-size: 72px; font-weight: 700; color: #fff; line-height: 1; }
.bx-wwa-years .num span { color: var(--accent-bx-soft); }
.bx-wwa-years .lbl { font-size: 14px; color: #fff; }

/* --- FOOTER BANTIAX --- */
.bx-footer { background: #000; padding: 80px 24px 20px; }
.bx-footer-grid {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .bx-footer-grid { grid-template-columns: repeat(4,1fr); } }
.bx-footer h3 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.bx-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.bx-footer-contact-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--accent-bx-soft); flex-shrink: 0;
}
.bx-footer-contact-icon i { font-size: 18px; }
.bx-footer-contact-text { color: #fff; font-size: 14px; line-height: 1.4; }
.bx-footer-contact-text a { color: var(--accent-bx-soft); text-decoration: underline; text-underline-offset: 2px; }
.bx-footer-social { display: flex;     justify-content: center; gap: 8px; margin-top: 16px; }
.bx-footer-social a {
  width: 34px; height: 34px; border-radius: 8px; 
  display: flex; align-items: center; justify-content: center; color: #fff;
  text-decoration: none; transition: border-color 0.2s;
}
.bx-footer-social a:hover { border-color: var(--accent-bx-soft); }
.bx-footer-social i { font-size: 18px; }
.bx-footer-links a { display: block; color: rgba(255,255,255,0.60); font-size: 14px; margin-bottom: 10px; text-decoration: none; transition: color 0.15s; }
.bx-footer-links a:hover { color: var(--accent-bx-soft); }
.bx-footer-bottom {
  max-width: 960px; margin: 32px auto 0;
  border-top: 1px solid rgba(255,255,255,0.10); padding-top: 16px;
  text-align: center; color: rgba(255,255,255,0.30); font-size: 12px;
}

/* Animaciones */
@keyframes bxRise { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.bx-reveal { animation: bxRise 700ms ease both; }
.bx-reveal-1 { animation-delay: 80ms; }
.bx-reveal-2 { animation-delay: 160ms; }
.bx-reveal-3 { animation-delay: 240ms; }
