/* Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

.clear {
    clear: both;
}



/* montserrat-100 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  src: url('https://boostwithai.net/assets/fonts/montserrat-v29-latin-100.woff2') format('woff2');
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('https://boostwithai.net/assets/fonts/montserrat-v29-latin-regular.woff2') format('woff2');
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('https://boostwithai.net/assets/fonts/montserrat-v29-latin-700.woff2') format('woff2');
}

/* lora-400 - latin */
@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  src: url('https://boostwithai.net/assets/fonts/Lora-Regular.woff2') format('woff2');
}

/* lora-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  src: url('https://boostwithai.net/assets/fonts/Lora-Bold.woff2') format('woff2');
}


:root {
  --clr-primary: #000000;
  --clr-secondary: #1a1a1a;
  --clr-accent: #c2d503;
  --clr-dark: #111111;
  --clr-gray: #6c757d;
  --clr-light: #f8f9fa;
  --ff-heading: 'Lora', serif;
  --ff-body: 'Montserrat', sans-serif;
  --transition: 0.3s ease;
  --spacing: 2rem;
}

/* NAV */

header {
  position: sticky;
  z-index: 9999;
  display: block;
  top: 0px;
  background-color: #000000;
  height: 50px;
}

header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 100%;
  height: 40px;
  background: #000;
  border-radius: 40%;
  z-index: -10;
    border-bottom: 1px solid #333;
}

/* contenedor flex */
.main-nav {
  position: initial;
  background: #000;
  padding: .40rem 1rem;
  float: right;
  margin-right: 20px;
  margin-top: 7px;
}

/* ---- BOTÓN HAMBURGER ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #c2d503;
  border-radius: 2px;
}

/* ---- MENÚ PRINCIPAL ---- */
.menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 4px;
}

ul.sub-menu a:hover {
    text-shadow: 1px 0 0 currentColor;
    color: #c2d503;
}

li.menu-item a:hover {
    text-shadow: 1px 0 0 currentColor;
    color: #c2d503;
}

/* ítems */
.menu-item {
  position: relative;
  font-weight: 500;
}
.menu-item a {
  padding: .5rem 0;
  color: #ffffff;
  transition: color .2s;
}

/* flechita */
.arrow {
  font-size: .7em;
  margin-left: .2em;
  transition: transform 0.3s ease;
}

/* ---- SUBMENÚ (escritorio) ---- */
.sub-menu {
  position: absolute;
  top: 80%;
  left: 0;
  background: #111111;
  border: 1px solid #333;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,.05);
  display: none;
  min-width: 160px;
  z-index: 10;
}
.sub-menu li a {
  padding: .5rem 1rem;
  white-space: nowrap;
}
.has-children:hover > .sub-menu {
  display: block;
}

    .has-children .arrow.rotated {    
        transition: transform 0.3s ease;
        display: inline-block;
    }

        .has-children .arrow {
        transition: transform 0.3s ease;
        display: inline-block;
    }
span.arrow {
    margin-left: 6px;
    font-size: 15px;
}


/* La flecha rota si se hace hover en el enlace o en el submenu dentro del li.has-children */
.has-children:hover > a > .arrow,
.has-children:hover > .sub-menu > li:hover ~ .arrow {
  transform: rotate(180deg);
}

/* Más simple y efectivo */
.has-children:hover > a > .arrow {
  transform: rotate(180deg);
}

/* Para que el submenu se mantenga visible */
.has-children:hover > .sub-menu {
  display: block;
}



/* ---- ESTILOS MÓVIL ---- */
@media (max-width: 768px) {

header::after {
  border-bottom: 0px;
}

.nav-toggle span {
  margin-right: 10px;
}

header  .main-nav ul.menu.open {
    top: 100%;
  }

header .cta-nav {
    float: right;
    padding: 3px 10px;
    background-color: var(--clr-primary);
    color: white;
    -webkit-border-radius: 6px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-top: 12px;
    margin-bottom: 0px;
    margin-right: 10px;
}

  /* Hamburger to Cross Animation */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-toggle span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

  .main-nav ul.menu {
    display: none;
}

.main-nav ul.menu.open {
    display: block;
}
    .main-nav {
        position: relative;
        z-index: 1001;
        width: 100%;
        display: contents;
    }

    ul.sub-menu a {
    width: 100%;
    display: block;
    margin: 0 auto;
}

li.menu-item {
    width: 100%;
    display: grid
;
}

ul.sub-menu a {
    width: 100%;
}

li.menu-item.has-children ul.sub-menu {
    display: none !important;
}

li.menu-item.has-children.open ul.sub-menu {
    display: inline-block !important;
}

li.submenu-column ul {
    display: grid
;
}

header {
  position: relative;
  z-index: 1000;
}

.main-nav ul.menu.open {
  display: block;
  position: absolute;
  top: 120%;
  left: 0;
  right: 0;
  width: 100%;
  background: #000;
  z-index: 1002;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero { border-radius: 0 0 20% 20% / 0 0 3% 3% !important; }

.hero .title {
  font-family: var(--ff-heading);
  font-size: 2.6rem !important;
  line-height: 3.0rem !important;
  margin-bottom: 20px !important;
}

span#typewriter {
    font-size: 35px !important;
    font-weight: bold !important;
    line-height: 40px !important;
}

span#cursor {
  font-size: 35px !important;
}

.footer-sellos img {
  max-height: 70px;
}

hub-node-circle {
  width: 100px !important;
  height: 84px !important;
}

    img.main-logo {
        height: 38px !important;
        width: 38px !important;
        float: left;
        margin-right: 8px !important;
        margin-top: 6px;
        margin-left: 5px;
        border-radius: 4px;
    }

.typewriter-container {
    height: 98px;
}

  .nav-toggle {
    display: flex;
    float: right;
    margin-top: 20px;
    margin-right: 10px;
}
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #000;
    border-top: 1px solid #333;
    display: none;
  }
  .menu.open {
    display: flex;
  }

  /* submenú colapsable */
  .has-children > .sub-menu {
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
  }
  .has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .has-children .sub-menu {
    display: none;
    flex-direction: column;
  }
  .has-children.open .sub-menu {
    display: flex;
  }

  

.footer-sellos img {
  margin: 10px auto !important;
}

.footer-sellos__container {
width: 240px;
}

h2.section-title {
  font-size: 30px;
  line-height: 35px;
  padding-bottom: 20px;
}

.card {
  padding: 10px 10px;
}



.result-card {
    width: 100%;
    max-width: 900px !important;
    float: none;
    margin: 30px 0px;
}

.results-grid {
    display: flow-root !important;
    justify-content: center;
    gap: 3rem;
}

.container {
    width: 98%;
    margin: 0 auto;
    display: block;
}

}




/* Grid */

.container {
    max-width: 1118px;
    margin: 0 auto;
    display: block;
}



/* Landings */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--ff-body);
  line-height: 1.6;
  color: var(--clr-dark);
  background: white;
}
.landing-content {
  max-width: 1150px;
  margin: auto;
  padding: var(--spacing) 1rem;
}
.section {
  padding: var(--spacing) 0;
}
.section:nth-of-type(even) {
  background: #fff;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--clr-primary);
  margin-bottom: var(--spacing);
  position: relative;
  text-align: center;
}
.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--clr-accent);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.hero {
  text-align: center;
  color: #fff;
  padding: calc(var(--spacing, 1rem) * 1.5) 1rem;
  margin-bottom: var(--spacing, 1rem);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 13% 13%;

  background: linear-gradient(
    135deg,
    var(--clr-primary),
    var(--clr-secondary)
  );
  /* Necesario para forzar repaint continuo */
  will-change: background;
}

.hero .title {
  font-family: var(--ff-heading);
  font-size: 35px;
  line-height: 53px;
}
.hero .subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}
.hero .highlight {
  font-size: 1.75rem;
  margin: var(--spacing) 0;
  font-weight: 700;
}
.col-1 {
  text-align: left;
  width: 50%;
  float: left;
}

.col-2 {
  width: 50%;
  float: right;
}

.col-2 img {
  width: 80%;
  float: right;
}

/* Estilos para móviles */
@media screen and (max-width: 768px) {
  .col-1 {
    width: 100%;
    float: none;
    text-align: center;
  }

  .col-2 {
    display: none;
  }


.top-bar .container {
    width: 94%;
    margin: 0 auto;
}

.tools-category {
  margin-bottom: 0px !important;
  margin-top: 15px !important;
}


}

.hero .intro {
  max-width: 720px;
  margin: var(--spacing) auto 0;
  opacity: 0.95;
}
.hero .cta-btn, .contact .cta-btn {
  display: inline-block;
  margin-top: var(--spacing);
  padding: 0.75rem 2.5rem;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero .cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing);
  margin-top: var(--spacing);
}
.feature-item {
  display: flex;
  align-items: self-start;
  position: relative;
  font-weight:  600;
}
li.feature-item img {
  width: 45px;
  margin-right: 5px;
  margin-top: -9px;
}
.feature-item .icon {
  margin-right: 0.75rem;
  font-size: 1.5rem;
  color: var(--clr-accent);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing);
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: var(--spacing);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  padding: 30px 20px 20px;
}

.card-icon img {
  width: 80px;
  height: 80px;
}

.card-icon img.icon-small {
  width: 70px;
  height: 80px;
}
.card-title {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.card-text {
  color: var(--clr-gray);
}
.card ul li {
  color: var(--clr-gray);
}
.inline-list {
  text-align: center;
  color: var(--clr-gray);
  font-weight: 600;
  margin: var(--spacing) 0;
}
.inline-list span {
  position: relative;
  padding: 0 0.5rem;
}
.inline-list span::before,
.inline-list span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--clr-gray);
  border-radius: 50%;
  transform: translateY(-50%);
}
.inline-list span::before { left: -1rem; }
.inline-list span::after { right: -1rem; }
.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing);
  justify-content: center;
}
.step {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 8px;
  padding: var(--spacing);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.step-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-accent);
}
.step-title {
  font-weight: 600;
  margin-top: 0.5rem;
}
.step-text {
  margin-top: 0.25rem;
  color: var(--clr-gray);
}

section.section.includes p {
  margin-bottom: 30px;
}

  /* Contenedor FAQ */
  .faq-section {
    padding: 3rem 1rem;
    background-color: var(--gray-100);
  }
  .faq-section .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
  }
  .faq-section .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
  }

  /* Lista y tarjetas */
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
  }
  .faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
  .faq-item[open] {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  /* Pregunta */
  .faq-question {
    cursor: pointer;
    padding: 1rem 1.5rem;
    font-weight: 600;
    position: relative;
    list-style: none;
    user-select: none;
  }
  /* Oculta el marcador por defecto */
  .faq-question::-webkit-details-marker { display: none; }
  .faq-question::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--clr-accent);
  }
  details[open] .faq-question::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
  }

  /* Respuesta */
  .faq-answer {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
  }



.section.tools {
  padding: var(--spacing) 1rem;
}

.tools-category {
  margin-bottom: var(--spacing);
  margin-top: 40px;
}

.tools-category-title {
  font-family: var(--ff-heading);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;               /* espacio entre pills */
  justify-content: center; /* centrar en caso de espacio sobrante */
  padding: 0;
  margin: 0;
  list-style: none;
}

.tool-pill {
  /* ancho fijo en desktop */
  flex: 0 0 23%;
  max-width: 24%;
  
  /* estilo “pill” */
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tool-pill.tool-pill-special img, .special-tool-pill img {
  height: 50px;
  max-height: 3.1rem !important;
}


/* efecto hover */
.tool-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* imágenes centradas y con tamaño máximo */
.tool-pill img {
  max-width: 100%;
  max-height: 2.5rem;
  object-fit: contain;
}

/* responsive: en pantallas estrechas (.mobile) las pills pasan a 50% */
@media (max-width: 768px) {
  .tool-pill {
    flex: 0 0 47%;
    max-width: 49%;
  }

  .super-tool-pill {
    flex: 0 0 47% !important;
    max-width: 49% !important;
  }

  .home section.section.includes {
    padding-bottom: 0px !important;
}

}

/* 1) Desactivar el padding dinámico */
@media (min-width: 1150px) {
  .features-fullwidth__item {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* 2) Seguir manteniendo solo el padding vertical en el item */
.features-fullwidth__item {
  padding: var(--spacing) 0;
  width: 100%;
  box-sizing: border-box;
  max-width: 780px;
  margin: 0 auto;
}

img.whyIconLista {
  width: 100px;
  float: left;
  margin-right: 20px;
}

/* 3) Limitar ancho y centrar TODO lo que haya dentro */
.features-fullwidth__item > * {
  max-width: 1150px;
  margin: 0 auto;
  box-sizing: border-box;
  font-size: 20px !important;
}

/* 4) Tipografía: si ahora usas vw units, cámbialo a rem o clamp().
   Ejemplo con clamp para que no crezca/encojga demasiado: */
.features-fullwidth__item p {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.5;
}
.features-fullwidth__item strong {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
  color: var(--clr-dark);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}


  /* Módulo SEM/PPC: características largas */
.why-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing);
  margin-top: var(--spacing);
}

.why-features .feature-card {
  background: #fff;
  border-radius: 12px;
  padding: var(--spacing);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-features .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.why-features .feature-card p {
  line-height: 1.6;
  color: var(--clr-gray);
}

.why-features .feature-card p strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--clr-dark);
}



.why-simple__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing);
  margin-top: var(--spacing);
}

/* A partir de tablet, dos columnas */
@media (min-width: 768px) {
  .why-simple__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-simple__item {
  padding: calc(var(--spacing) / 2) 0;
  border-bottom: 1px solid var(--clr-gray-light);
  line-height: 1.6;
  color: var(--clr-dark);
}

/* Elimina la línea en el último ítem */
.why-simple__item:last-child {
  border-bottom: none;
}



/* Header */

img.main-logo {
  height: 54px;
  width: 54px;
  float: left;
  margin-right: 12px;
  margin-top: -2px;
  border-radius: 6px;
}


nav.main-nav a {
    text-decoration: none;
    color: #ffffff;
    padding: 4px 10px;
    display: block;
    float: left;
}


.cta-nav {
  float: right;
  padding: 3px 10px;
  background-color: var(--clr-primary);
  color: white;
  -webkit-border-radius: 6px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 21px;
  margin-right: 10px;
}

.cta-nav a {
  color: white;
  text-decoration: none;
}

li.menu-item a {
  line-height: 34px;
}

ul.sub-menu a {
  width: 130px;
  display: flow-root;
  padding: 5px 0px;
  color: #ffffff;
}


footer {
  background-color: #ffffff;
}
footer h2.section-title {
  margin-top: 50px;
}




/* Main Form */
/* 1) Tipografía y variables */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap');

:root {
  --primary-color: #c2d503;
  --bg-light: #f9f9f9;
  --bg-card: #ffffff;
  --text-dark: #333;
  --border: #e1e1e1;
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  width: 100%;
  overflow-x: hidden;
}

/* 2) Grid container (ya tenías) */
.grid-container {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/* 3) Tarjeta del formulario */
.card {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 4) Título */
.card h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}

.card a:hover {
    text-shadow: 1px 0 0 #5e5e5e;
    color: #5e5e5e;
}

.card a {
  color: var(--clr-gray);
  text-decoration: none;
}

/* 5) Formulario */
.contact-form {
  display: grid;
  gap: 1.25rem;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--bg-light);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(194, 213, 3, 0.25);
}

.contact-form textarea {
  resize: vertical;
}

/* 6) Botón */
.contact-form button {
  margin-top: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.contact-form button:hover {
  background-color: #a0b100;
  transform: translateY(-1px);
}

.contact-form button:active {
  transform: translateY(0);
}



  /* Contact Section Simplificado */
  .section.contact {
    background-color: var(--gray-100);
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .section.contact .section-title {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .contact-intro {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
  }
  
  .contact-action {
    text-align: center;
  }
  
  .contact-action .cta-btn {
    /* Asume que .cta-btn ya tiene estilos de botón definidos.
       Si quieres un poco más de separación: */
    margin-top: 1rem;
  }





/* Footer */

.ht-brands > div img {
    height: 40px;
    float: left;
    margin-right: 30px;
}



/* Landings */

:root {
  --hub-radius: 180px;
}

/* Wrapper limita ancho al 50% y centra */
.projects-hub-wrapper {
  display: flex;
  justify-content: center;
  background: var(--color-bg);
  padding: 3rem 1rem;
}
.projects-hub-container {
  width: 50%;
}
@media (max-width: 768px) {
  .projects-hub-container { width: 100%; }

  .hub-center {
    position: absolute;
    top: 45% !important;
    left: 75% !important;
  }

  .col-2.col-2-projects {
    display: block;
    width: 100%;
}

.hub-node-circle { 
    width: 100px !important;
    height: 100px !important;
}



}

/* Contenedor hub */
.hub-container {
  position: relative;
  width: 100%;
  height: 450px;
  margin: 0 auto;
}


.hub-node-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--clr-accent);
    margin-right: 8px;
}


/* Centro con fondo y pulso ligero */
.hub-center {
  position: absolute;
  top: 43%; left: 65%;
  transform: translate(-50%, -50%);
  background: var(--color-accent-light);
  border-radius: 50%;
  width: 140px; height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(194, 213, 3, 0.4);
  animation: pulse 5s ease-in-out infinite;
}


.hub-node.hub-node-bottom {
    top: 140px;
}
.hub-node.hub-node-bottom-first {
    top: 29%;
}
.hub-node.hub-node-bottom {
    top: 29%;
}

.hub-center h3 {
    margin: 0;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.5rem;
}
.hub-center p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--color-text);
}



@keyframes pulse {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.03); }
}

/* Nodos radiales */
.hub-node {
  --angle: calc(360deg / 5 * var(--i) - 90deg);
  position: absolute;
  top: 35%; left: 41%;
  transform: rotate(var(--angle)) translate(var( --hub-radius)) rotate(calc(-1 * var(--angle)));
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hub-node::before {
  content: '';
  position: absolute;
  top: calc(50% - var( --hub-radius));
  left: 50%;
  width: 1px;
  height: var( --hub-radius);
  background: var(--color-accent-light);
  transform: translateX(-50%);
}

/* Círculo de icono con borde redondeado */
.hub-node-circle {
    background: #fff;
    border-radius: 50%;
    width: 124px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 6px rgba(194, 213, 3, 0.35);
    transition: box-shadow 0.3s ease;
}

.hub-node-circle img {
  width: 32px;
}

/* Etiqueta bajo icono */
.hub-node span {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
    max-width: 100px;
}

/* Hover: desplaza y suaviza sombra */
.hub-node:hover {
  transform: rotate(var(--angle)) translate(calc(var( --hub-radius) + 20px)) rotate(calc(-1 * var(--angle))) scale(1.05);
}
.hub-node:hover .hub-node-circle {
  box-shadow: 0 4px 12px rgba(194, 213, 3, 0.4);
}

/* Ajuste móvil: menor radio */
@media (max-width: 600px) {
  .hub-container { height: 350px; }
  :root {  --hub-radius: 140px; }
}

.col-2 section.projects {
    width: 98%;
    float: right;
}
.card.feature-card {
    margin-top: 10px;
}


section.section.method {
  display: flow-root;
}



.projects-hub-container {
    width: 50%;
    margin-right: 80px;
}






img.nosotros-profile-img.whyIconLista {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}



.contact-button-sticky {
  position: fixed;
  width: 220px;
  bottom: 40px;
  left: 30px;
  background-color: #c2d503;
  color: white;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.contact-button-sticky a {
  color: #000000;
  text-decoration: none;
  text-align: center;
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
}




a.inside-nosotros-link:hover {
  text-shadow: 1px 0 0 currentColor;
}
a.inside-nosotros-link {
  color: black;
  font-size: 17px !important;
  border: 0px !important;
  padding: 0px;
  margin: 0px !important;
}

p.result-description strong {
  font-weight: bold;
}

.super-tool-pill {
  flex: 0 0 23%;
  max-width: 24%;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.super-tool-pill img {
  max-width: 100%;
  max-height: 3.4rem;
  object-fit: contain;
}

.top-bar {
  border-bottom: 1px solid #333;
  background-color: #000000;
  font-size: 12px;
  padding-top: 4px;
}

.top-bar a {
  text-decoration: none;
  color: #ffffff;
}

.top-bar-telf {
  float: left;
  margin-right: 20px;
}

.top-bar-left div {
  float: left;
}


/* Editorial */

article.container.editorial-article img {
    width: 100%;
}
article.container.editorial-article {
    max-width: 860px;
    width: 98%;
    margin: 0 auto;
    display: block !important;
}

.article-author-img img {
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    border-radius: 23px;
}
.article-author-img {
    width: 40px;
    float: left;
    margin-top: 5px;
    margin-right: 10px;
}

  .article-breadcrumb a:hover {
    text-shadow: 1px 0 0 currentColor;
}

.article-breadcrumb a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}
.article-breadcrumb {
    margin: 40px 0px 10px;
}

.editorial-article h1 {
    font-weight: bold;
    font-size: 35px;
    line-height: 43px;
}

.editorial-article h1 {
    font-weight: bold;
    font-size: 35px;
    line-height: 43px;
    margin-bottom: 15px;
}

h2.post-entry {
    font-size: 20px;
    margin-bottom: 30px;
}

img.main-image {
    margin-top: 20px;
    margin-bottom: 20px;
}

.editorial-article p {
    margin: 15px 0px;
}

.editorial-article h2 {
    font-weight: bold;
    font-size: 25px;
}

article.container.editorial-article {
    margin-bottom: 50px;
    display: inline-block;
}

.editorial-article h2.post-entry {
    font-size: 20px;
    font-weight: normal;
}

.article-breadcrumb a {
    margin-right: 20px;
}


/* Header styles */

/* Contenedor del submenú tipo dropdown */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #111111;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 600px;
  white-space: nowrap;
}

/* Mostrar el submenú si está abierto */
.menu-item.has-children.open .sub-menu {
  display: flex;
}

/* Columnas del submenú */
.three-columns {
  gap: 2rem;
}

/* Columna individual */
.submenu-column {
  flex: 1 1 30%;
}

/* Título de columna */
.submenu-title {
  font-weight: bold;
  margin-bottom: 0.5em;
  display: block;
  color: #c2d503;
}



/* Menu principal horizontal */
.main-nav .menu {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .sub-menu {
    position: static;
    display: block;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    flex-direction: column;
  }

  .three-columns {
    flex-direction: column;
  }
}

.menu-item.has-children:hover .sub-menu,
.menu-item.has-children.open .sub-menu {
  display: flex;
    top: 37px;
    left: -210px;
}


.top-bar {
    border-bottom: 1px solid #333;
    background-color: #000000;
    font-size: 12px;
    padding-top: 4px;
    padding-bottom: 2px;
}

.header-brand-nav {
    position: sticky;
    z-index: 9999;
    display: flow-root;
    top: 0px;
}

.top-bar-left div {
    float: left;
}

.top-bar-left {
    display: inline-block;
}

.top-bar-telf {
    float: left;
    margin-right: 20px;
}

.top-bar a {
    text-decoration: none;
    color: #ffffff;
}

.top-bar-right {
    float: right;
    display: flow-root;
}




.flb-container {
    display: flow-root;
    padding-bottom: 50px;
    background-color: #000000;
    padding-top: 20px;
    padding-bottom: 100px;
}




@media (max-width: 768px) {

.flb-legal-links a {
    text-decoration: none;
    color: black;
    margin: 0px 4px !important;
    font-size: 10px !important;
}

}