/* ============================================
   Plano Invisible — Corporate Website (Multi-page)
   Design System: Roboto 300, #F7AA28 accent
   ============================================ */

@font-face {
  font-family: 'SugoProClassicTrial-ExtraLight';
  src: url('fonts/Sugo-Pro-Classic-ExtraLight-trial.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'SugoProClassicTrial-Thin';
  src: url('fonts/Sugo-Pro-Classic-Thin-trial.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

:root {
  --accent: #F7AA28;
  --accent-hover: #e59a1f;
  --dark: #1E1E1E;
  --light: #FFFFFF;
  --gray: #D7DED9;
  --gray-dark: #6c757d;
  --font: 'Roboto', sans-serif;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --radius-btn: 4px;
  --radius-card: 6px;
}

/* ---- Reset & Base ---- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-weight: 300;
  color: var(--gray-dark);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* ---- Buttons ---- */
.btn-accent {
  background-color: var(--accent);
  color: var(--light);
  border: 2px solid var(--accent);
  border-radius: var(--radius-btn);
  padding: 0.65rem 1.8rem;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.25s;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--light);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  border-radius: var(--radius-btn);
  padding: 0.65rem 1.8rem;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.25s;
}

.btn-outline:hover {
  background-color: var(--dark);
  color: var(--light);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--light);
  border: 2px solid var(--light);
  border-radius: var(--radius-btn);
  padding: 0.65rem 1.8rem;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.25s;
}

.btn-outline-light:hover {
  background-color: var(--light);
  color: var(--dark);
}

/* ---- Navbar ---- */
.navbar {
  transition: background-color 0.3s, box-shadow 0.3s;
  padding: 1rem 0;
}

.navbar.scrolled {
  background-color: var(--light) !important;
  box-shadow: var(--shadow);
}

.navbar-logo {
  height: 40px;
  width: auto;
}

.navbar-logo-text {
  font-size: 2.4rem;
  color: #1d1d1b;
  letter-spacing: 0.01em;
  line-height: 1;
}

.navbar-logo-text .logo-plano {
  font-family: 'SugoProClassicTrial-ExtraLight', sans-serif;
  font-weight: 200;
}

.navbar-logo-text .logo-invisible {
  font-family: 'SugoProClassicTrial-Thin', sans-serif;
  font-weight: 100;
  margin-left: 0.15em;
}

.navbar .nav-link {
  color: var(--dark);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--accent);
}

.nav-cta {
  padding: 0.4rem 1.2rem !important;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-btn);
  line-height: 1.5;
}

.navbar--dark-hero .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
}

.navbar--dark-hero .nav-link:hover,
.navbar--dark-hero .nav-link.active {
  color: var(--accent) !important;
}

.navbar--dark-hero .navbar-logo {
  filter: brightness(0) invert(1);
}

.navbar--dark-hero .navbar-logo-text {
  color: #fff;
}

.navbar--dark-hero.scrolled .nav-link {
  color: var(--dark) !important;
}

.navbar--dark-hero.scrolled .nav-link:hover,
.navbar--dark-hero.scrolled .nav-link.active {
  color: var(--accent) !important;
}

.navbar--dark-hero.scrolled .navbar-logo {
  filter: none;
}

.navbar--dark-hero.scrolled .navbar-logo-text {
  color: #1d1d1b;
}

/* ---- Home Topbar ---- */
.home-topbar {
  position: fixed;
  top: 0;
  right: 0;
  padding: 1.25rem 2rem;
  z-index: 10;
}

.home-topbar-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.home-topbar-link:hover {
  color: var(--accent);
}

/* ---- Home Splash ---- */
.home-splash {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #ffffff 0%, #f5f5f0 40%, #f0ece4 100%);
  position: relative;
  overflow: hidden;
}

.home-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-logo-text {
  font-size: 4rem;
  color: #1d1d1b;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 2rem;
}

.logo-plano {
  font-family: 'SugoProClassicTrial-ExtraLight', sans-serif;
  font-weight: 200;
}

.logo-invisible {
  font-family: 'SugoProClassicTrial-Thin', sans-serif;
  font-weight: 100;
  margin-left: 0.15em;
}

.home-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-casa-img {
  height: 70vh;
  width: auto;
  opacity: 1;
  filter: none;
}

.home-claim {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.home-claim .light {
  font-weight: 300;
  color: var(--gray-dark);
}

.home-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: #1d1d1b;
  margin-bottom: 2.5rem;
  white-space: nowrap;
  position: relative;
}

.home-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem auto 0;
}

.home-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-ctas .btn-outline {
  padding: 0.85rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.home-ctas .btn-outline:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.hero-img {
  max-width: 300px;
  width: 100%;
}

.hero-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-title .bold {
  font-weight: 700;
}

.hero-title .light {
  font-weight: 300;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gray-dark);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Page Hero (inner pages ~60vh) ---- */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.page-hero--light {
  background: var(--light);
}

.page-hero--dark {
  background: var(--dark);
  color: var(--light);
}

.page-hero--accent {
  background: var(--accent);
  color: var(--light);
}

.page-hero--gray {
  background: var(--gray);
}

/* Dark hero navbar adjustments */
.page-hero--dark + section,
.page-hero--accent + section {
  position: relative;
}

/* ---- Prensa ---- */
.press-section {
  background: var(--gray);
  padding: 1.2rem 0;
}

.press-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  opacity: 0.5;
}

.press-bar span {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
}

/* ---- Press Cards (particulares page) ---- */
.press-card {
  background: var(--gray);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
}

.press-source {
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.press-headline {
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0;
}

/* ---- Nosotros ---- */
.nosotros-img {
  max-width: 380px;
  border-radius: var(--radius-card);
}

.pillar-icon {
  width: auto;
  height: 168px;
  object-fit: contain;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.pillar-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.pillar-card h5 {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.95rem;
}

/* ---- Bifurcacion ---- */
#bifurcacion {
  background: var(--gray);
}

.audience-card {
  background: var(--light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.audience-card h4 {
  margin-bottom: 1rem;
}

.audience-card .audience-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

/* ---- Particulares Hero ---- */
.part-hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: var(--light);
  border-bottom: 1px solid var(--gray);
  overflow: hidden;
}

.part-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(247, 170, 40, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.part-hero__title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.part-hero__title span {
  font-weight: 700;
  color: var(--accent);
}

.part-hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.part-hero__cta {
  padding: 0.75rem 2.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.part-hero__img {
  max-width: 85%;
  height: auto;
  border-radius: var(--radius-card);
}

@media (max-width: 991px) {
  .part-hero__title { font-size: 2.8rem; }
  .part-hero__img { max-width: 400px; margin-top: 2rem; }
}

@media (max-width: 768px) {
  .part-hero__title { font-size: 2.2rem; }
  .part-hero__img { display: none; }
  .part-hero .col-lg-6:first-child {
    text-align: center;
    width: 100%;
  }
  .part-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .part-hero__cta {
    display: block;
    margin: 0 auto;
    max-width: 250px;
  }
  .part-plataforma .col-lg-5 img {
    max-width: 40% !important;
  }
  #neurociencia .col-lg-6 img {
    max-width: 50% !important;
  }
}

/* ---- Profesionales Hero ---- */
.pro-hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: var(--dark);
}

.pro-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pro-hero__title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.pro-hero__title span {
  font-weight: 700;
  color: var(--accent);
}

.pro-hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.pro-hero__cta {
  padding: 0.75rem 2.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.pro-hero__img {
  max-width: 100%;
  height: auto;
  filter: none;
}

@media (max-width: 992px) {
  .pro-hero__title { font-size: 2.8rem; }
  .pro-hero__img { max-width: 400px; margin-top: 2rem; }
}

@media (max-width: 768px) {
  .pro-hero__title { font-size: 2.2rem; }
  .pro-hero__img { display: none; }
  .pro-hero .col-lg-6:first-child {
    text-align: center;
    width: 100%;
  }
  .pro-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .pro-hero__cta {
    display: block;
    margin: 0 auto;
    max-width: 250px;
  }
  .navbar--dark-hero .navbar-toggler-icon {
    filter: invert(1);
  }
  footer .footer-main {
    text-align: center;
  }
  footer .footer-main .col-lg-4,
  footer .footer-main .col-lg-2,
  footer .footer-main .col-lg-3 {
    text-align: center;
  }
  footer .navbar-logo-text {
    font-size: 2rem;
  }
  footer .footer-links {
    padding-left: 0;
  }
  footer .footer-links li {
    text-align: center;
  }

}

/* ---- Particulares Divider & Plataforma ---- */
.part-hero + .part-plataforma {
  border-top: 1px solid var(--gray);
  position: relative;
}

.part-plataforma {
  background: var(--light);
}

/* ---- Particulares ---- */
.step-card {
  background: #f9f9f7;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-card__img-wrap {
  height: 200px;
  overflow: hidden;
}

.step-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  background: var(--light);
  transition: transform 0.4s;
}

.step-card:hover .step-card__img {
  transform: scale(1.05);
}

.step-card__img--svg {
  object-fit: contain;
  padding: 2rem;
  background: var(--light);
}

.step-card__placeholder {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      #e0e0e0 10px,
      #e0e0e0 11px
    );
}

.step-card__body {
  padding: 1.5rem;
}

.step-card__body h4 {
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.step-card__body p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--gray-dark);
}

.step-block {
  padding: 2rem 1.5rem;
  border-left: 3px solid var(--accent);
  height: 100%;
}

.step-label {
  display: inline-block;
  background: var(--accent);
  color: var(--light);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-btn);
  margin-bottom: 1rem;
}

/* ---- Profesionales (dark section) ---- */
.pro-stats-section {
  background: var(--light);
  padding: 5rem 0;
}

.pro-solution-section {
  background: var(--dark);
  color: var(--light);
  padding: 5rem 0;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-weight: 300;
  color: #ccc;
  margin-top: 0.5rem;
}

.pro-stats-section .stat-label {
  color: var(--gray-dark);
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 2rem;
  height: 100%;
  transition: border-color 0.25s;
}

.feature-card:hover {
  border-color: var(--accent);
}

.feature-card h5 {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

/* ---- Pro Quote ---- */
.pro-quote {
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--gray);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.pro-quote p {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: var(--dark);
}

/* ---- Result Cards (profesionales) ---- */
.result-card {
  background: var(--gray);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  height: 100%;
}

.result-card h5 {
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.result-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---- Traction Cards ---- */
.traction-card {
  background: var(--light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  height: 100%;
}

.traction-card .traction-title {
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.traction-card ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.traction-card ul li {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

/* ---- Equipo ---- */
.team-card {
  text-align: center;
}

.team-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.team-photo:hover {
  filter: grayscale(0%);
}

.team-card h4 {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.team-card .team-role {
  color: var(--accent);
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.team-card .team-bio {
  font-weight: 300;
  color: var(--gray-dark);
  max-width: 380px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ---- Diferenciacion ---- */
.diff-img {
  max-width: 320px;
  border-radius: var(--radius-card);
}

.diff-list {
  list-style: none;
  padding: 0;
}

.diff-list li {
  padding: 0.65rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 1rem;
}

.diff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---- Contacto ---- */
.contact-form .form-control,
.contact-form .form-select {
  border-radius: var(--radius-btn);
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  font-weight: 300;
  font-family: var(--font);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(247, 170, 40, 0.15);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* ---- Quote Separator ---- */
.quote-text {
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: #1d1d1b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Highlight Logo (in dark sections) ---- */
.highlight-logo {
  font-size: 2.2rem;
  color: #fff;
  margin-left: 0.15em;
}

.highlight-logo:first-child {
  margin-left: 0;
}

/* ---- Solution Lead (profesionales) ---- */
.solution-lead {
  max-width: 850px;
  color: #ccc;
  font-size: 1.5rem;
  line-height: 1.8;
}

/* ---- Stat Number Inline ---- */
.stat-number-inline {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 700;
}

/* ---- Testimonios ---- */
.testimonial-card {
  background: transparent;
  padding: 0.8rem 0;
  margin: 0;
  border: none;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.testimonial-name {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
  border-top: 1px solid #eee;
}

.cookie-banner__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
  min-width: 200px;
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-btn);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--dark);
  transition: all 0.2s;
}

.cookie-btn--accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-btn--accept:hover {
  background: var(--accent-hover);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--dark);
}

.cookie-btn--reject:hover {
  background: #f0f0f0;
}

.cookie-btn--config {
  background: transparent;
  color: var(--dark);
}

.cookie-btn--config:hover {
  background: #f0f0f0;
}

.cookie-config__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1.5rem 1.2rem;
  border-top: 1px solid #eee;
}

.cookie-config__inner h6 {
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.cookie-config__option {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.cookie-config__option label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.cookie-config__option input[type="checkbox"] {
  margin-top: 3px;
}

.cookie-config__buttons {
  margin-top: 0.8rem;
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.8rem;
  }
  .cookie-banner__buttons {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ---- Footer ---- */
footer {
  background: var(--dark);
  color: #999;
  padding: 4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-main {
  padding-bottom: 3rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-style: italic;
  font-weight: 300;
  color: #666;
  font-size: 0.85rem;
}

.footer-heading {
  color: var(--light);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 0.5rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
  color: #777;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #555;
}

.footer-bottom p {
  margin: 0;
}

/* ---- Animations (IntersectionObserver) ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.45s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.75s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.9s; }

/* ---- Utilities ---- */
.bg-gray {
  background-color: var(--gray);
}

/* ---- Plano Invisible Highlight ---- */
.plano-invisible-highlight {
  background-color: var(--dark);
  color: var(--light);
  padding: 6rem 0;
}

.plano-invisible-highlight__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.plano-invisible-highlight__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.plano-invisible-highlight__lead {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.plano-invisible-highlight__divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 2rem;
}

.plano-invisible-highlight__text {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.plano-invisible-highlight__claim {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 2rem;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--accent);
  padding: 5rem 0;
}

.cta-banner__title {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-banner__text {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(30, 30, 30, 0.7);
  margin-bottom: 2rem;
}

.cta-banner .btn-accent {
  background: var(--dark);
  color: var(--light);
  border-color: var(--dark);
}

.cta-banner .btn-accent:hover {
  background: #333;
  border-color: #333;
}

.text-accent {
  color: var(--accent);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-img {
    max-width: 240px;
    margin-top: 2.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .page-hero {
    min-height: 50vh;
  }
}

@media (max-width: 991px) {
  .home-left {
    text-align: center;
    margin-bottom: 2rem;
  }
  .home-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .home-subtitle::after {
    margin: 1.5rem auto 0;
  }
  .home-ctas {
    justify-content: center;
  }
  .home-casa-img {
    max-width: 280px;
  }
  .part-hero__img {
    display: none;
  }
  .pro-hero__img {
    display: none;
  }
  .part-hero .col-lg-6:first-child,
  .pro-hero .col-lg-6:first-child {
    text-align: center;
    width: 100%;
  }

  /* ---- Mobile Slide Menu ---- */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1070;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
  .navbar-collapse.show {
    right: 0;
  }
  .navbar-collapse .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .navbar-collapse .nav-link {
    font-size: 1.2rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: var(--dark) !important;
  }
  .navbar-collapse .nav-cta {
    margin-top: 1rem;
    text-align: center;
  }
  .navbar-toggler {
    z-index: 1080;
    position: relative;
    margin-right: 0;
  }
  .nosotros-img {
    max-width: 300px;
  }
  .diff-img {
    display: none !important;
  }
  .bg-gray .col-lg-7 {
    text-align: center;
  }
  .diff-list {
    text-align: left;
  }
  .pillar-icon {
    height: 130px;
  }
  .step-card__img {
    max-width: 80%;
  }
  .part-plataforma .img-fluid {
    max-width: 45% !important;
  }
  #neurociencia .img-fluid {
    max-width: 50% !important;
  }
  .plano-invisible-highlight .img-fluid {
    max-width: 40% !important;
  }
  .bg-gray .col-lg-4 .img-fluid {
    max-width: 50% !important;
  }
}

@media (max-width: 768px) {
  .home-claim {
    font-size: 2.8rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-img {
    max-width: 200px;
    margin-top: 2rem;
  }
  section {
    padding: 3.5rem 0;
  }
  .page-hero {
    min-height: 45vh;
    padding-top: 5rem;
  }
  .team-photo {
    width: 160px;
    height: 160px;
  }
  .diff-img {
    max-width: 220px;
    margin-bottom: 1.5rem;
  }
  .press-bar {
    gap: 1.5rem;
  }
  .press-bar span {
    font-size: 0.95rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .nosotros-img {
    max-width: 280px;
  }
  .home-logo-text {
    font-size: 3rem;
  }
  .home-subtitle {
    white-space: normal;
    text-align: center;
  }
  .home-splash {
    align-items: flex-start;
    padding-top: 15vh;
  }
  .navbar-logo-text {
    font-size: 1.8rem;
  }
  .navbar-toggler {
    margin-right: 0;
  }
  .plano-invisible-highlight__title {
    font-size: 2rem;
  }
  .plano-invisible-highlight__lead {
    font-size: 1.1rem;
  }
  .cta-banner__title {
    font-size: 1.6rem;
  }
  .home-casa-img {
    height: 40vh;
  }
  .pillar-icon {
    height: 120px;
  }
  .quote-text {
    font-size: 1.2rem;
  }
  .highlight-logo {
    font-size: 1.6rem;
  }
  .solution-lead {
    font-size: 1.2rem;
  }
  .stat-number-inline {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .home-logo-text {
    font-size: 2.5rem;
  }
  .navbar-logo-text {
    font-size: 1.5rem;
  }
  .home-claim {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .part-hero__title {
    font-size: 1.8rem;
  }
  .pro-hero__title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .plano-invisible-highlight__title {
    font-size: 1.5rem;
  }
  .plano-invisible-highlight__lead {
    font-size: 1rem;
  }
  .cta-banner__title {
    font-size: 1.3rem;
  }
  .home-casa-img {
    height: 30vh;
  }
  .pillar-icon {
    height: 100px;
  }
  .testimonial-card p {
    font-size: 0.85rem;
  }
  .quote-text {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .highlight-logo {
    font-size: 1.3rem;
  }
  .solution-lead {
    font-size: 1rem;
  }
  .stat-number-inline {
    font-size: 1.5rem;
  }
}
