html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins';
  font-weight: normal;
  letter-spacing: 1px;
}

a {
  color: black;
  transition: .3s ease;
}

a:hover {
  color: rgba( 0 0 0 / 80%);
}

/* Animate */

@keyframes spinPulse {

  0% {
    transform: rotate(0deg) scale(0.9);
  }

  50% {
    transform: rotate(180deg) scale(1.05);
  }

  100% {
    transform: rotate(360deg) scale(0.9);
  }

}

@keyframes blur {
  to {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
  }
}

.blur {
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: blur 0.3s linear forwards;
  animation-delay: .2s;
  filter: blur(5px);
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes edgeBreath {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeinup {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in, .fade-in-up, .fade-in-left, .fade-in-right, .fade-in-down {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  will-change: opacity, transform;
}

.fade-in-up {
  transform: translateY(50px);
}

.fade-in-down {
  transform: translateY(-50px);
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in {
  transform: none;
}

.delay-1.visible {
  transition-delay: 0.2s;
}

.delay-2.visible {
  transition-delay: 0.4s;
}

.delay-3.visible {
  transition-delay: 0.6s;
}

.delay-4.visible {
  transition-delay: 0.8s;
}

.delay-5.visible {
  transition-delay: 1s;
}

.fade-in.visible, .fade-in-up.visible, .fade-in-down.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.speed-slower {
  transition-duration: 1.5s;
}

.speed-slow {
  transition-duration: 0.9s;
}

.speed-normal {
  transition-duration: 0.3s;
}

.speed-fast {
  transition-duration: 0.1s;
}

.speed-faster {
  transition-duration: 0.25s;
}

.refined-reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(6px) scale(0.995);
  animation: refinedReveal 1.6s cubic-bezier(0.19,1,0.22,1) forwards;
  animation-delay: 0s;
}

@keyframes refinedReveal {
  to {
    opacity: 0.92;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.delay-1 {
  animation-delay: .2s;
  transition-delay: .2s;
}

.delay-2 {
  animation-delay: .4s;
  transition-delay: .4s;
}

.delay-3 {
  animation-delay: .6s;
  transition-delay: .6s;
}

.delay-4 {
  animation-delay: .8s;
  transition-delay: .8s;
}

.delay-5 {
  animation-delay: 1s;
  transition-delay: 1s;
}

.delay-6 {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}

.spinPulse {

  animation: spinPulse 3s linear infinite;

}

/* Framework */

button {
display: block;
    background: black;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid black;
    text-decoration: none;
    transition: 0.3s;
    width: fit-content;
        font-size: 1rem;
    flex-wrap: nowrap;
    display: flex;
}

button:hover{
 background: #2f3034;
}


button.white{
  background: white;
  color: black;
  border: solid 2px white;
}

button.white{
  background: transparent;
  color: white;
}

.exclusion {
  mix-blend-mode: difference;
}

.fnt-extralight {
  font-weight: 200;
}

.fnt-light {
  font-weight: 300;
}

.fnt-bold {
  font-weight: 700;
}

.fnt-extrabold {
  font-weight: 800;
}

.fnt-xs {
  font-size: .8em;
}

.fnt-sm {
  font-size: 1em;
}

.fnt-md {
  font-size: 1.2em;
}

.fnt-lg {
  font-size: 1.4em;
}

.fnt-xl {
  font-size: 1.8em;
}

.fnt-xxl {
  font-size: 2em;
}

.fnt-gray{
  color: gray;
}

.title-md {
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 110%;
}

.bg-black {
  background: black;
}

.headline h1 {
  font-size: clamp(2rem, 3.5vw, 5rem);
  text-transform: uppercase;
}

.headline h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

.scrolling-wrapper > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper::-webkit-scrollbar {
  display: none;
}

.scrolling-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.rounded-sm{
  border-radius: 30px;
}

.rounded-md{
  border-radius: 45px;
}

.rounded-lg{
  border-radius: 60px;
}

.link-black{
  color: black;
  text-decoration: none;
  transition: .3s ease;
}

.link-black:hover{
  color: #444444;
}


/* Styles */

header {
  position: fixed;
  width: 100%;
  z-index: 3;
  background: transparent;
  border-radius: 0 0 30px 30px;
  transition: .3s ease;
}

header.active {
  background: transparent;
}

.brand {
  width: 65px;
  height: 45px;
  overflow: hidden;
  position: relative;
  fill: currentColor;
  display: inline-block; 
  vertical-align: middle;
  transition: .3s ease;
  z-index: 1;
}

@media (min-width: 576px) {
  .brand {
    width: 250px;
  }
}

.brand svg{
  position: absolute;
  width: 250px;
  height: 100%;
}

.brand.active {
  width: 65px;
  height: 45px;
}

.brand img {
  width: 250px;
  height: 44px;
}

.brand a{
  width: 100%;
  height: 100%;
  display: inline-block;  
}

.hero-content h1 {
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 120%;
}

@media (min-width: 576px) {
  .hero-content h1 {
    font-size: clamp(2.5rem, 3.5vw, 4.5rem);
  }
}

.hero-content p {
  font-size: 1em;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .hero-content p {
    font-size: 1.3em;
    letter-spacing: 3px;
  }
}

.hero-content.normal p{
  font-size: 1.2em;
  letter-spacing: 1px;
  font-weight: normal;
  text-transform: none;
}


.insights-cover{
position:relative;
height:100vh;
background:#ffffff;
overflow:hidden;
}

#insights-canvas{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:block;
pointer-events:none;
}


.hero-contact {
  position: relative;
  width: 100%;
  height: 100vh;
}

@media (min-width: 768px) {
.insights-hero, .hero-contact{
  height: 100vh;
}
}

.insights-hero > *, .hero-contact > * {
  margin: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*pointer-events: none;*/
  padding: 50px;
}

#metaballs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: block;
  z-index: 1;
  background: white;
}

.line {
  width: 100%;
  height: 3px;
  background: black;
}

.logo-blend {
  position: relative;
  z-index: 1;
  pointer-events: none;
  width: 250px;
  transition: .3s ease;
}

.logo-blend.active {
  fill: white;
}

.poniter-efect {
  cursor: none;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 65px;
  height: 65px;
  margin-left: -25px;
  margin-top: -25px;
  pointer-events: none;
  border: 2px solid black;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4;
  background-color: white;
  mix-blend-mode: difference;
  transition: transform 0.3s ease;
}

.cursor-arrow {
  font-size: 20px;
  color: black;
  transform: rotate(0deg);
}

.logotype-footer h2 {
  font-size: clamp(2.8em, 9vw, 11rem);
  background-clip: text;
  display: inline-block;
  color: transparent;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 10%, rgb(255, 255, 255) 100%);
  letter-spacing: 0.01em;
}

.footer {
  position: relative;
}

.footer-texture {
  position: absolute;
  border-radius: inherit;
  inset: 0px;
  background-image: url('../img/texture.webp');
  background-repeat: repeat;
  background-position: left top;
  border: 0px;
  background-size: 150px;
  opacity: .1;
}

.btn-basic-light a {
  width: fit-content;
  padding: 15px 30px;
  background: white;
  border: solid 2px white;
  color: black;
  transition: .3s ease;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  font-size: 14px;
  border-radius: 30px;
}

.btn-basic-light a:hover{
  color: white;
  background: black;
}

.btn-octano {
  display: block;
  position: relative;
  z-index: 1;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  color: black;
  font-size: 14px;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 30px;
  font-weight: bold;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn-octano {
    padding: 15px 30px;
    font-size: 16px;
  }
}

.btn-octano:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 3px solid white;
  border-radius: 30px;
}

.btn-octano:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}

.btn-octano:hover {
  color: white;
  border-radius: 30px;
}

.btn-octano:hover:after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  border-radius: 30px;
}

.btn-octano-inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: white;
}

.btn-octano-blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url('#octano');
}

.btn-octano-blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: black;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}

.btn-octano-blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}

.btn-octano-blob:nth-child(2) {
  left: 25%;
  transition-delay: 0.08s;
}

.btn-octano-blob:nth-child(3) {
  left: 50%;
  transition-delay: 0.16s;
}

.btn-octano-blob:nth-child(4) {
  left: 75%;
  transition-delay: 0.24s;
}

.btn-octano:hover .btn-octano-blob {
  transform: translateZ(0) scale(1.7);
}

.btn-nav, .btn-nav a {
  min-width: 45px;
  min-height: 45px;
  width: 45px;
  height: 45px;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white !important;
  border-radius: 50%;
  font-size: 1.2em;
  cursor: pointer;
  z-index: 2;
  transition: .3s ease;
}

@media (min-width: 768px) {
  .btn-nav, .btn-nav a {
    width: 50px;
    height: 50px;
  }
}

.btn-nav a:hover{
  color: white !important;
}


.btn-nav.active, .btn-nav.active a {
  background: white;
  color: black;
}

#navigation {
  position: fixed;
  width: 100%;
  bottom: 25px;
  z-index: 4;
  transition: .3s ease;
  transform: translateX(0%) translateY(0px) scale(1);
}

#navigation.disable {
  will-change: transform;
  opacity: 0;
  transform: translateX(0%) translateY(150px) scale(0.75);
}

.tab-wrapper {
  background: black;
  padding: 10px;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: rgba(255,255,255,.25) 0 1.5px 3px;
}

.tab-switch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  isolation: isolate;
}

.tab-switch .tab {
  position: relative;
  padding: 12px 22px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  z-index: 2;
}

.tab-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 8px 24px rgba(0,0,0,0.35);
  opacity: 0;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), width 0.4s cubic-bezier(.4,0,.2,1), opacity 0.2s ease;
  will-change: transform, width;
}

.tab.active:after {
  content: "";
}

.menu-footer {
  z-index: 3;
  position: relative;
}

.menu-footer a {
  color: rgba(255 255 255 / 50%);
  text-decoration: none;
  transition: .3s ease;
}

.menu-footer a:hover {
  color: white;
}

.social-media {
  z-index: 3;
  position: relative;
}

.social-media a {
  color: rgba(255 255 255 / 50%);
  text-decoration: none;
  transition: .3s ease;
  font-size: 1.2em;
}

.social-media a:hover {
  color: white;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 150px;
  width: max-content;
  will-change: transform;
}

.logo-track img {
  opacity: .75;
}

.icon{
  position: relative;
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block; 
  vertical-align: middle;
}

.icon.size-2{
  width: 2em;
  height: 2em;
}

.icon svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.brand{
  position: relative;
  fill: currentColor;
  display: inline-block; 
  vertical-align: middle;
}

.brand svg{
  position: absolute;
  width: 250px;
  height: 100%;
}

.legals{
  position: relative;
  z-index: 3;
}

.legals a{
  color: gray;
  text-decoration: none;
}

.legals a:hover{
  color: white;
  text-decoration: underline;
}

.hero-contact {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-contact > * {
    margin: auto;
}

#cookie{
  position: fixed;
  z-index: 99;
  bottom: 20px;
  right: 20px;
  background: white;
  max-width: 320px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 1px 16px rgba(0 0 0 / 10%);
}

.btn-cookie{
  width: 100% !important;
  font-size: .8em;
}

.btn-cookie:first-child{
  margin-bottom: 0px;
}

.btns-cookies{
display: flex;
flex-direction: column;
}

@media only screen and (max-height: 700px) and (orientation: landscape){
  #cookie{
    min-width: 70%;
  }

  .btns-cookies{
    display: flex;
    flex-direction: row;
    width: 100%;
    }

  .btn-basic button {
    margin: 3px !important;
  }
}

#cookie a{
  color: black;
}

#cookie a:hover{
  color: gray;
}

.box-content img{
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.box-content a{
  text-decoration: none;
}

box-content a:hover{
  text-decoration: underline;
}

.single-content {
  font-size: 1rem;
}

.single-content p {
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
  color: black;
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
  .single-content p {
    font-size: 1.1em;
  }
}

.single-content > :is(h1, h2, h3) {
  font-size: 1.4em;
  font-weight: 500;
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 1.6em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 1.8em;
  }
}

.single-content > :is(h4, h5, h6) {
  font-size: 1.3em;
  font-weight: 500;
  color: black;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.4em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.5em;
  }
}

.single-content figure {
  margin-bottom: 30px;
  border-radius: 5px;
}

.single-content figure img {
  width: 100%;
  height: auto;
  margin: 0;
  animation-delay: .3s;
  border-radius: 5px;
  margin-bottom: 5px;
  border: solid 1px #f6f6f6;
}

.single-content ul {
  list-style: none;
  margin: 0 0 30px 0;
  padding-left: 3.5em;
}

.single-content ul li {
  position: relative;
  display: block;
  counter-increment: item;
  position: relative;
  margin: 0.4em 0;
  padding: 4px 15px;
  line-height: 28px;
  transition: all .3s ease-out;
}

.single-content ul li:hover{
  background:#f9f9f9;
  border-radius: 5px;
}

.single-content ul li:hover:after {
  left: -.5em;
  border-left-color: black;
}

.single-content ul li:before {
  content: "•";
  position: absolute;
  left: -2.3em;
  top: 50%;
  margin-top: -1em;
  color: white;
  background: black;
  height: 2em;
  width: 2em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-content {
  /*counter-reset: item;*/
}

.single-content ol {
  list-style: none;
  margin: 0 0 30px 0;
  padding-left: 3.5em;
  
}

.single-content ol > li {
  counter-increment: item;
  position: relative;
  margin: 0.4em 0;
  padding: 4px 15px;
  line-height: 28px;
  transition: all .3s ease-out;
}

.single-content ol > li::before {
  content: counters(item, ".");
  position: absolute;
  left: -2.3em;
  top: 50%;
  transform: translateY(-50%);
  height: 2em;
  width: 2em;
  background: black;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-content li > ol {
  counter-reset: item;
  margin-top: 0.4em;
}

.single-content ol li > ol li::before {
  background: black;
}
.single-content ol li > ol li > ol li::before {
  background: black;
}

.single-content ol li:hover {
  background: #f9f9f9;
  border-radius: 5px;
}

.single-content .table-hover tbody tr {
  transition: .3s;
  border-bottom: solid 2px black;
}

.single-content .table-hover tbody tr:hover {
  color: #212529;
  background-color: var(--quinary);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  color: black;
  background: transparent;
}

.table-hover > tbody > tr:hover > * {
  color: black;
  background: transparent;
}

.single-content .table-striped tbody tr:nth-of-type(odd) {
  transition: .3s;
  border-bottom: solid 2px black;
}

.single-content .table-striped tbody tr:nth-of-type(2n + 1):hover {
  background-color: var(--quinary);
  transition: .3s;
}

.single-content table {
  color: black;
  margin-bottom: 30px;
}

.single-content table thead {
  border-bottom: solid 4px black;
  color: black;
}

.single-content .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .single-content .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.table > :not(caption) > * > * {
  box-shadow: none;
}

.single-content blockquote p {
  margin-bottom:0px;
  font-size: 1.3rem;
  line-height: normal;
}

.single-content blockquote {
  display: block;
  font-size: 30px;
  padding: 50px 0px 10px 0px;
  position: relative;
  line-height: 1.2;
  font-style: italic;
  top: 0;
  margin-top: -15px;
  margin-bottom: 20px;
  border-left: solid 5px black;
}

@media (min-width: 992px) {
  .single-content blockquote {
    display: block;
    position: relative;
    line-height: 1.2;
    top: 0px;
  }
}

.single-content blockquote::after {
  content: "";
}

.single-content blockquote::before {
  content: "\201C";
  font-size: 4em;
  color: black;
  position: absolute;
  left: 15px;
  top: -5px;
  font-family: 'arial';
  z-index: 1;
  line-height: 1em;
}

@media (min-width: 1200px) {
  .single-content blockquote::before {
    content: "\201C";
    font-size: 4em;
    position: absolute;
    left: 20px;
    top: -10px;
  }
}

.single-content .blockquote footer {
  background: transparent;
  font-size: 1em;
  margin: 15px 30px;
  color: black;
  font-style: normal;
  font-weight: 600;
  text-align: end;
}

@media (min-width: 992px) {
  .single-content .blockquote footer {
    background: transparent;
    font-size: initial;
    margin: 15px 0;
    color: black;
  }
}

.single-content .blockquote p {
  padding: 0 0 0 30px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .single-content .blockquote p {
    padding: 0 0 0 30px;
  }
}

.blockquote-footer {
  margin: 0;
  padding-right: 20px;
  color: black;
}

@media (min-width: 992px) {
  .blockquote-footer {
    padding-right: 50px;
  }
}

.single-content a {
  color: black;
  text-decoration: none;
  background-color: transparent;
  text-decoration: none;
  background-image: linear-gradient(black,black);
  background-position: 0 99%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  transition: background-size .5s;
}

.single-content a:hover {
  color: black;
  background-size: 0% 2px;
}

.single-content iframe {
  width: 100%;
  background-color: #f9f9f9;
  margin: 0 0;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content iframe {
    width: 95%;
    background-color: #f9f9f9;
    margin: 0 50px 0 0;
    margin-bottom: 30px;
  }
}

.single-content figure {
  display: block;
}

.single-content video, .single-content iframe {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 5px;
}

.single-content h4:has( + p) {
  margin-bottom: 0;
  font-weight: 600;
  color: black;
  font-size: .9em;
 background: #f9f9f9;
  padding: 15px 15px 5px 25px;
  border-radius: 10px 10px 0 0;
  text-transform: uppercase;
}

.single-content h4 + P {
  margin-bottom: 0;
  font-weight: 600;
  color: black;
  font-size: 1.1em;
 background: #f9f9f9;
  padding: 0px 15px 20px 25px;
  margin-bottom: 30px;
}

.single-content h4 + P {
  color: #f9f9f9 !important;
  padding: 0px 15px 20px 25px;
  border-radius: 0 0 10px 10px;
  line-height: 120%;
}

.single-content h4 + P {
  color: #f9f9f9 !important;
}

.single-content h4 + p a {
  color: black;
  text-decoration: none;
}


.single-content h4 + p a:hover {
  color: black;
  text-decoration: none;
}

.single-content .mark, .single-content mark {
  background: #f9f9f9;
}

/* single */

/* wordpress */
.single-content .figure .wp-block-image {
  padding-bottom: 0;
  font-weight: normal !important;
  margin: 0;
}

.wp-block-gallery .wp-block-image {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
  overflow: hidden;
  padding-top: 65%;
  margin-bottom:0px;
}

.wp-block-gallery .wp-block-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 0px;
  border: 0;
}

.wp-block-gallery {
  border-radius: 5px !important;
  overflow: hidden;
  padding: 0 !important;
}

.wp-block-gallery figure {
  padding: 0;
}

.wp-block-gallery ol li:before {
  display: none;
}

.wp-block-gallery .figure-caption{
  position: absolute;
  z-index: 9999;
  bottom: 15px;
  left: 10px;
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.wp-block-media-text__media {
  width: 40%;
  display: flex;
  justify-content: center;
  margin: 10px 0 !important;
}

@media (min-width: 576px) {
  .wp-block-media-text__media {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__media {
    width: 20%;
  }
}

.wp-block-media-text__content {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
}

@media (min-width: 576px) {
  .wp-block-media-text__content {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__content {
    width: 80%;
  }
}

.wp-block-media-text .wp-block-media-text__content {
  direction: ltr;
  grid-column: 2;
  grid-row: 1;
  word-break: break-word;
  padding-left: 15px;
}

.wp-block-media-text__content p {
  padding: 0 !important;
}

.wp-block-media-text {
  padding-left: 0;
}

.wp-block-media-text {
  display: flex;
  margin-bottom: 30px;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 576px) {
  .wp-block-media-text {
    display: flex;
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .wp-block-media-text {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.wp-block-media-text.is-stacked-on-mobile {
  grid-template-columns: 100%!important;
}

.wp-block-media-text h5 {
  font-size: 1.3em;
}

.wp-block-media-text h4 {
  font-size: 1.3em;
  padding: 0;
  margin: 0;
  font-size: .8em;
  font-weight: 800;
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wp-block-media-text p, .wp-block-media-text h5 {
  padding: 0;
  margin-bottom: 5px;
}

.wp-block-media-text p {
  font-size: 1em;
  line-height: normal;
}

.wp-block-media-text figure {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .wp-block-media-text figure {
    margin-bottom: 0;
  }
}

.wp-block-media-text figure img {
  object-fit: cover;
}

.wp-block-media-text a {
  background-size: 100% 2px;
}

.wp-block-image {
  position: relative;
}

.wp-block-image img {
  position: relative;
  z-index: 1;
}

.wp-block-image .figure-caption {
  z-index: 2;
  color: white;
  text-shadow: 0 1px 6px rgba(0 0 0 / 10%);
  margin: 0 15px;
  font-size: 13px;
  bottom: 15px;
  left: 0;
  position: absolute;
}

/* - */

.wp-block-embed-youtube, .video-youtube {
  position: relative;
  height: 0;
  padding: 0;
  margin: 0;
  padding-bottom: 56.25%;
  width: 100%;
  background: black;
}

.wp-block-embed-youtube .wp-block-embed__wrapper, .video-youtube .video-wrapper {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe, .video-youtube .video-wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tags ul {
  display: flex;
  flex-flow: wrap;
}

.tags a {
  padding: 4px 15px;
  border-radius: 30px;
  border: solid 2px #f9f9f9;
  color: gray;
  background: #f9f9f9;
  text-decoration: none;
  font-size: .8em;
  transition: .3s ease;
  box-decoration-break: clone;
  white-space: nowrap;
  text-transform: capitalize;
}

.tags a:hover {
  color: black;
  border: solid 2px #f3f3f3;
  background: #f3f3f3;
}

#author img {
  object-fit: cover;
  border: solid 3px white;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
  border-radius: 50%;
}

#author h3{
  font-size: 1.3em;
  
}

#author a{
text-decoration: none;
transition: .3s;
font-weight: 600;
}

.author-picture {
  border: solid 3px white;
  border-radius: 50%;
}

.txt-limit-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 4;
  overflow: hidden;
}

.figure-caption {
  font-size: 12px;
  color: darkgray;
}

.single-content h4:has( + ul) {
  color: black;
  font-weight: 400;
  margin-bottom: 0;
  background: #f3f0fc; 
  border-radius: 10px 10px 0 0;
  padding: 15px 10px 10px 10px;
  font-size: 30px;
}

.single-content h4 + ul {
  background: #f3f0fc;
  padding: 0px 10px 20px 10px;
  border-radius: 0 0 10px 10px;
  line-height: 100%;
}

.single-content h4 + ul li {
  padding-right: 30px;
  padding-bottom: 15px;
  line-height: 120%;
  filter: brightness(0) saturate(100%) invert(16%) sepia(8%) saturate(20%) hue-rotate(317deg) brightness(100%) contrast(86%);
}

.single-content h4 + ul li:last-child {
  padding-bottom: 0;
}

.single-content h4 + ul li ul {
  padding: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.single-content h4 + ul li ul li:last-child {
  padding-bottom: 0;
}

.single-content h4 + ul li:hover {
  filter: brightness(0) saturate(100%) invert(27%) sepia(82%) saturate(2594%) hue-rotate(242deg) brightness(92%) contrast(98%);
  background:transparent;
}

.single-content h4 + ul li:has( > a + ul):hover {
  filter: none;
}

.single-content h4 + ul li a {
  color: black;
  background-size: 0% 2px;
}

.single-content h4 + ul li a:hover {
  color: black;
  background-size: 0% 2px;
}

.single-content h4 + ul li::before {
  display: none;
}

.single-content h4 + ul li a {
  position: relative;
  display: inline-block;
  width: 100%;
}

.single-content h4 + ul li a::before {
  content: " ";
  position: absolute;
  right: -30px;
  top: -5px;
  width: 30px;
  height: 30px;
  background: url('../../assets/img/arrow-right.svg') no-repeat center;
  opacity: .5;
}

.single-content h4 + ul li:hover a::before {
  opacity: 1;
}

.picture-post img{
  border-radius: 30px;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

figure figcaption{
  font-size: 12px;
  color: gray;
  text-align: center;
}

.share-post .icon{
  width: 1.5rem;
  height: 1.5rem;
}

 .resume .icon{
  width: 1.8rem;
  height: 1.8rem;
}

 .resume .icon.adjustment{
  width: 1.6rem;
  height: 1.6rem;
}

.excerpt strong{
  font-weight: 500;
}

.excerpt{
  padding: 0 1.5rem;
}


.single-content p strong{
  font-weight: 600;
}

.single-content h3:has( + ul) {
  color: black;
  margin-bottom: 0;
  background: #f6f6f6;
  border-radius: 20px 20px 0 0;
  padding: 15px 10px 5px 22px;
}

.single-content h3 + ul {
  background: #f6f6f6;
  padding: 0px 10px 20px 10px;
  border-radius: 0 0 20px 20px;
  line-height: 100%;
}

.single-content h3 + ul li {
    margin:0;
    line-height: 120%;
    padding: 10px 50px 9px 15px;
    border-radius: 5px;
}

.single-content h3 + ul li ul {
  padding: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.single-content h3 + ul li ul li:last-child {
  padding-bottom: 0;
}

.single-content h3 + ul li:hover {
  background: #f1f1f1;
}

.single-content h3 + ul li:has( > a + ul):hover {
  filter: none;
}

.single-content h3 + ul li a {
  color: black;
  background-size: 0% 2px;
}

.single-content h3 + ul li a:hover {
  color: var(--primary);
  background-size: 0% 2px;
}

.single-content h3 + ul li::before {
  display: none;
}

.single-content h3 + ul li a {
  position: relative;
  display: inline-block;
  width: 100%;
}

.single-content h3 + ul li a::before {
  content: "⇑";
  position: absolute;
  right: -50px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  transform: rotate(90deg);
  opacity: .2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-content h3 + ul li:hover a::before {
  opacity: 1;
}


#share{
  position: fixed;
  width: 100%;
  bottom: 25px;
  z-index: 4;
  transition: .3s ease;
  transform: translateX(0%) translateY(0px) scale(1);
}

#share.disable {
  will-change: transform;
  opacity: 0;
  transform: translateX(0%) translateY(150px) scale(0.75);
}

.share-post{
  background: black;
  color:white;
  padding: 10px;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: rgba(255, 255, 255, .25) 0 1.5px 3px;

}

.share{
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  isolation: isolate;
}

.share a{
  position: relative;
  padding: 6px;
  color: white;
  text-decoration: none;
  z-index: 2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(14px) saturate(160%);
  border: 2px solid rgba(255, 255, 255, 0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0), 0 8px 24px rgba(0, 0, 0, 0);
  transition: .3s ease;
}


.share a:hover{
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(160%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 8px 24px rgba(0, 0, 0, 0.35);
}


@media (min-width: 576px) {
  .share a{
    padding: 12px;
  }
}

@media (min-width: 1024px) {
  .share-post{
    padding: 10px 15px 10px 20px;
  }
}

.category a{
  display: flex;
    justify-content: center;
    width: fit-content;
    text-decoration: none;
    border: solid 2px black;
    padding: 4px 12px 2px 12px;
    border-radius: 18px;
    font-size: .8em;
    background: black;
    color: white;
    text-transform: uppercase;
    transition: .3s ease;
    font-weight: 500;
}

.category a:hover{
  background: white;
  color: black;
}

.author, .author a{
 font-size: .9rem;
 color: black;
}

.author a{
  color: black;
  text-decoration: none;
  transition: .3s ease;
}

.author a:hover{
  color: gray;
}

#author{
  background: #f9f9f9;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
}

.photo-author{
  order: -1;
}

@media (min-width: 768px) {
.photo-author{
  order: 2;
}
}

#reading-progress {
  position: fixed;
  bottom:  0;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0,0,0,.08);
  z-index: 9999;
}

#reading-progress .progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: currentColor;
  transition: width .15s linear;
}

.scroll-target {
  scroll-margin-top: 80px;
}

.section-efect {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .6s ease;
}

.section-efect.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

.wp-block-button a{
    background: black;
    color: white;
    border: none;
    padding: 12px 50px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: solid 2px black;
    transition: .3s ease;
}

.wp-block-button a:hover{
   color: white;
   background: #2f3034;
}

#blobs{
  display: none;
}

#wpadminbar{
  background-color: black;
}

.btn-basic a{
    display: block;
    background: black;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: solid 2px black;
    text-decoration: none;
    transition: .3s ease;
    width: fit-content;
}

.btn-basic a:hover{
 background: #2f3034;
}


.btn-basic-blur a{
    display: block;
    background: rgba(240 240 240 / 50%);
    color: black;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: .3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230 230 250 / 50%);
}

.btn-basic-blur a:hover{
    outline: none;
    background: rgba(240 230 230 / 50%);
    backdrop-filter: blur(20px);
}

#octa-analysis-form input{
  margin-bottom: 20px;
}

.page-title{
  padding: 0 1.5rem;
}

.single-content .wp-block-button{
  padding: 0 1.5rem;
}

.octa-honeypot{
position:absolute;
left:-9999px;
opacity:0;
height:0;
overflow:hidden;
}










/*----------------------------------
CONTAINER
----------------------------------*/

.octa-steps{

list-style:none;
padding:0;
margin:0;

position:relative;

height:40px;
display:flex;
justify-content: center;
align-items:center;

}


/*----------------------------------
BASE STEP
----------------------------------*/

.octa-steps li{

position:absolute;

display:flex;
align-items:center;
gap:12px;

font-size:16px;

opacity:0;
transform:translateY(0) scale(1);

color:#9aa3b2;

transition:

opacity .8s cubic-bezier(.19,1,.22,1),
transform .8s cubic-bezier(.19,1,.22,1);

}


/*----------------------------------
STEP ACTIVE
----------------------------------*/

.octa-steps li.is-active{

opacity:1;
transform:translateY(0) scale(1);

color:#000000;

}


/*----------------------------------
STEP DONE
----------------------------------*/

.octa-steps li.is-done{

opacity:0;
transform:translateY(0) scale(1);

}


/*----------------------------------
DOT BASE
----------------------------------*/

.octa-steps .dot{

width:10px;
height:10px;

border-radius:50%;

background:#4b5565;

position:relative;

}


/*----------------------------------
DOT ACTIVE
----------------------------------*/

.octa-steps li.is-active .dot{

background:black;

box-shadow:

0 0 0 4px rgba(0,0,0,.1),
0 0 18px rgba(0, 0, 0 ,.3);

animation:dotPulse 1.1s ease infinite;

}


/*----------------------------------
DOT DONE
----------------------------------*/

.octa-steps li.is-done .dot{

background:black;

box-shadow:0 0 12px rgba(0,0,0,.3);

animation:none;

}



/*----------------------------------
DOT PULSE
----------------------------------*/

@keyframes dotPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.5);
}

100%{
transform:scale(1);
}

}


.insight-panel{
padding:60px 0;
}

.panel-actions a{
text-decoration:none;
}

.analysis-usage{
margin-bottom:30px;
}

.analysis-bar{
height:6px;
background:#eee;
border-radius:3px;
margin-top:10px;
}

.analysis-progress{
height:6px;
background:#000;
border-radius:3px;
}

.analysis-action{
margin-bottom:30px;
    display: flex;
    justify-content: center;
}

.limit-message{
background:#f7f7f7;
padding:25px;
border-radius:10px;
margin-bottom:40px;
text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.diagnostic-card{
display:flex;
justify-content:space-between;
align-items:center;
border:1px solid #eee;
padding:20px;
border-radius:8px;
margin-bottom:15px;
}

.diagnostic-date{
color:#777;
font-size:14px;
}

.btn-primary{
    display: block;
    background: black;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: solid 2px black;
    text-decoration: none;
    transition: .3s ease;
    width: fit-content;
}

.btn-primary:hover{
background: #2f3034;
color: white;
}

.btn-secondary{
    display: block;
    background: rgba(240 240 240 / 50%);
    color: black;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: .3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230 230 250 / 50%);
    flex-wrap: nowrap;
    display: flex;
}


.btn-secondary:hover{
    outline: none;
    background: rgba(240 230 230 / 50%);
    backdrop-filter: blur(20px);
}


.btn-primary.disabled{
opacity:.5;
cursor:not-allowed;
}

.diagnostic-info h3{
  font-weight: bold;
}

/* TOPBAR */

.diagnostic-topbar{
margin-bottom:30px;
}

/* HEADER */

.diagnostico-header-main{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.diagnostico-title h1{
margin:0;
font-size:28px;
}

.diagnostico-dominio{
color:#777;
font-size:16px;
margin-top:6px;
}

.diagnostico-score{
text-align:center;
background:#f7f7f7;
padding:20px 30px;
border-radius:10px;
}

.score-number{
font-size:36px;
font-weight:700;
}

.score-label{
font-size:14px;
color:#666;
}

/* CARDS GENERALES */

.octa-message{
font-size:14px;
line-height:1.4;

animation:fadeInMessage .4s ease;

}

@keyframes fadeInMessage{

from{
opacity:0;
transform:translateY(5px);
}

to{
opacity:1;
transform:translateY(0);
}

}

.header-actions{
gap:14px;
}

.header-user{
display:flex;
align-items:center;
gap:14px;
}

.header-user-name{
font-size:14px;
font-weight:bold;
color:#333;
text-transform: uppercase;
}

.section.diagnostic{
padding:80px 0;
}

.octa-module{
margin-top:56px;
}

.octa-module h2{
margin:0 0 18px;
font-size:1.25rem;
line-height:1.2;
font-weight: bold;
}

.octa-module-body p,
.octa-module p,
.octa-module li,
.octa-module span{
line-height:1.6;
}

.octa-grid-2{
display:grid;
grid-template-columns:1fr;
gap:24px;
}

@media(min-width:768px){
.octa-grid-2{
grid-template-columns:repeat(2,minmax(0,1fr));
}
}

.diagnostic-topbar{
margin-bottom:24px;
}

.diagnostico-header{
display:flex;
flex-direction:column;
align-items:flex-start;
gap:18px;
padding-bottom:28px;
border-bottom:1px solid #ececec;
}

.diagnostico-dominio{
margin:0;
font-size:1rem;
color:#666;
word-break:break-word;
}

.diagnostico-score{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 22px;
    border-radius: 14px;
    background: #f7f7f7;
    min-width: 160px;
}

.score-number{
font-size:2.5rem;
font-weight:700;
line-height:1;
}

.score-label{
margin-top:8px;
font-size:.875rem;
color:#666;
}

.octa-intro{
margin-top:36px;
}

.diagnostico-contexto{
display:grid;
grid-template-columns:1fr;
gap:18px;
}

@media(min-width:768px){
.diagnostico-contexto{
grid-template-columns:repeat(2,minmax(0,1fr));
}
}

.contexto-item{
padding:18px 20px;
border:1px solid #ececec;
border-radius:14px;
background:#fff;
display:flex;
flex-direction:column;
gap:8px;
min-height:96px;
}

.contexto-item span{
font-size:.82rem;
color:#777;
}

.contexto-item strong{
font-size:1rem;
font-weight:600;
color:#111;
}

.contexto-item a{
text-decoration:none;
}

.octa-history-list{
list-style:none;
padding:0;
margin:0;
display:grid;
gap:12px;
}

.octa-history-list li a{
display:flex;
justify-content:space-between;
align-items:center;
gap:16px;
padding:14px 18px;
border:1px solid #ececec;
border-radius:12px;
text-decoration:none;
color:inherit;
background:#fff;
}

.history-date{
font-size:.92rem;
color:#555;
}

.history-score{
font-weight:600;
}

.ai-insights-grid{
display:grid;
grid-template-columns:1fr;
gap:18px;
}

@media(min-width:768px){
.ai-insights-grid{
grid-template-columns:repeat(3,minmax(0,1fr));
}
}

.ai-insight{
padding:22px;
border:1px solid #ececec;
border-radius:14px;
background:#fff;
}

.ai-insight h3{
margin:0 0 10px;
font-size:1rem;
}

.octa-summary-grid,
.octa-closing-grid,
.octa-model-grid{
align-items:start;
}

.octa-tech-grid{
display:grid;
grid-template-columns:1fr;
gap:16px;
}

@media(min-width:640px){
.octa-tech-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
}
}

@media(min-width:1024px){
.octa-tech-grid{
grid-template-columns:repeat(4,minmax(0,1fr));
}
}

.octa-tech-card{
padding:18px 20px;
border:1px solid #ececec;
border-radius:14px;
background:#fff;
display:flex;
flex-direction:column;
gap:8px;
}

.octa-tech-card span{
font-size:.82rem;
color:#777;
}

.octa-tech-card strong{
font-size:1rem;
font-weight:600;
}

.octa-ai-readiness{
padding:24px;
border:1px solid #ececec;
border-radius:16px;
background:#fff;
}

.ai-score{
font-size:2.25rem;
font-weight:700;
line-height:1;
margin:10px 0 14px;
}

.octa-maturity-card{
padding:22px 24px;
border:1px solid #ececec;
border-radius:14px;
background:#fff;
}

.octa-maturity-card strong{
display:block;
margin-bottom:10px;
font-size:1.05rem;
}

.octa-recomendaciones-list{
list-style:none;
padding:0;
margin:0;
display:grid;
gap:14px;
}

.octa-recomendaciones-list li{
padding:18px 20px;
border:1px solid #ececec;
border-radius:14px;
background:#fff;
display:flex;
flex-direction:column;
gap:6px;
}

.octa-radar-wrap{
padding:20px;
border:1px solid #ececec;
border-radius:16px;
background:#fff;
min-height:320px;
display:flex;
align-items:center;
justify-content:center;
}

.octa-bars{
padding:20px;
border:1px solid #ececec;
border-radius:16px;
background:#fff;
height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.octa-lectura{
margin:0;
padding-left:18px;
display:grid;
gap:12px;
}

.plan-grid{
display:grid;
grid-template-columns:1fr;
gap:18px;
}

@media(min-width:768px){
.plan-grid{
grid-template-columns:repeat(3,minmax(0,1fr));
}
}

.plan-card{
padding:22px;
border:1px solid #ececec;
border-radius:14px;
background:#fff;
}

.plan-fase{
display:inline-block;
margin-bottom:10px;
font-size:.78rem;
color:#666;
}

.plan-card h3{
margin:0 0 10px;
font-size:1rem;
}

.octa-ai-strategic{
display:grid;
gap:18px;
}

.octa-ai-block,
.octa-ai-score{
padding:22px;
border:1px solid #ececec;
border-radius:14px;
background:#fff;
}

.octa-ai-block h3,
.octa-ai-score h3{
margin:0 0 12px;
font-size:1rem;
}

.ai-score-number{
font-size:2rem;
font-weight:700;
line-height:1;
}

.octa-ai-block ul{
margin:0;
padding-left:18px;
display:grid;
gap:10px;
}

.octa-comparador{
display:grid;
gap:10px;
}

.octa-comparador-line{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:12px;
padding:14px 18px;
border:1px solid #ececec;
border-radius:12px;
background:#fff;
}

.octa-comparador-line .area{
color:#555;
}

.octa-comparador-line .valores{
font-weight:700;
}

.octa-impacto-potencial{
padding:24px;
border:1px solid #ececec;
border-radius:16px;
background:#fff;
}

.octa-impact-compare{
display:grid;
grid-template-columns:1fr;
gap:16px;
margin-bottom:18px;
}

@media(min-width:640px){
.octa-impact-compare{
grid-template-columns:1fr 1fr;
}
}

.impact-current,
.impact-potential{
padding:18px 20px;
border:1px solid #ececec;
border-radius:12px;
background:#fafafa;
display:flex;
flex-direction:column;
gap:6px;
}

.impact-current span,
.impact-potential span{
font-size:.82rem;
color:#777;
}

.impact-current strong,
.impact-potential strong{
font-size:1.35rem;
line-height:1.2;
}

.btn-basic{
display:flex;
justify-content:center;
}

/* =========================================================
BARS
========================================================= */

.octa-bar-label{
display:flex;
justify-content:space-between;
font-size:13px;
margin-bottom:8px;
}

.octa-bar-track{
height:10px;
background:#f3f3f3;
border-radius:999px;
overflow:hidden;
}

.octa-bar-fill{
height:100%;
background:#000;
}

/* =========================================================
INSIGHTS
========================================================= */

.header-diagnostic, .panel-header {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

@media(min-width:768px){
.header-diagnostic, .panel-header {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}
}

.fit-content {
  width: fit-content;
}

.octa-processing{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background: rgba(255 255 255 / 90%);
background: rgba(255 255 255 / 90%);
backdrop-filter: saturate(180%) blur(5px);
-webkit-backdrop-filter: saturate(180%) blur(5px);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

.octa-processing-inner{
padding:40px;
border-radius:12px;
text-align:center;
max-width:480px;
width:90%;
}

.octa-loader img{
width:130px;
height: 130px;
}


.area-blur{
background: rgba(255, 255, 255, 0.14);
backdrop-filter: blur(18px) saturate(180%);
-webkit-backdrop-filter: blur(18px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.28);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
border-radius: 24px;
position: relative;
overflow: hidden;
}

.area-blur::after{
content: "";
position: absolute;
top: -20%;
left: -10%;
width: 60%;
height: 60%;
background: radial-gradient(
circle,
rgba(255,255,255,0.22) 0%,
rgba(255,255,255,0) 70%
);
pointer-events: none;
}

.area-blur{
background: rgba(255, 255, 255, 0.14);
backdrop-filter: blur(18px) saturate(180%);
-webkit-backdrop-filter: blur(18px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.28);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
border-radius: 24px;
position: relative;
overflow: hidden;
padding: 30px;
}

.area-blur::before{
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
180deg,
rgba(255,255,255,0.32) 0%,
rgba(255,255,255,0.10) 38%,
rgba(255,255,255,0.04) 100%
);
pointer-events: none;
}

.area-blur::after{
content: "";
position: absolute;
top: -20%;
left: -10%;
width: 60%;
height: 60%;
background: radial-gradient(
circle,
rgba(255,255,255,0.22) 0%,
rgba(255,255,255,0) 70%
);
pointer-events: none;
}

.content-hero p{
  margin-bottom: 30px;
}