/* =====================================================
   GLOBAL BRIDGE - CUSTOM STYLES
   Este archivo debe cargarse después de slides.min.css
   ===================================================== */

/* =========================
   BASE
   ========================= */

:root {
  --gb-navy: #07395f;
  --gb-blue: #158fff;
  --gb-cyan: #18c7a7;
  --gb-dark: #05101d;
  --gb-white: #ffffff;
  --gb-soft-white: rgba(255, 255, 255, 0.82);
  --gb-glass: rgba(8, 18, 32, 0.48);
  --gb-border: rgba(255, 255, 255, 0.12);
}

body {
  background: var(--gb-dark);
}

.slides {
  font-family: "Roboto", sans-serif;
}

/* =========================
   NAVBAR
   ========================= */

.panel.top {
  position: fixed !important;
  top: 0;
  right: 0;
  z-index: 9999;
  padding: 16px 34px;
  background: var(--gb-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gb-border);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.35s ease;
}

.panel.top.solid {
  background: rgba(8, 18, 32, 0.88);
}

.panel .sections {
  width: 100%;
}

.panel .sections > div {
  height: 58px;
}

.panel .logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.panel .logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.panel .logo:hover img {
  transform: scale(1.04);
}

.panel .sections .menu {
  padding: 0;
}

.panel .sections .menu li {
  margin: 0 12px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.panel .sections .menu li a {
  color: #ffffff;
  opacity: 0.88;
  padding: 8px 0;
  position: relative;
}

.panel .sections .menu li a:hover {
  opacity: 1;
}

.panel .sections .menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--gb-blue), var(--gb-cyan));
  transition: width 0.3s ease;
}

.panel .sections .menu li a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.panel .button.nav-contact,
.panel .button.nav-quote {
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: none;
}

.panel .button.nav-contact {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff !important;
}

.panel .button.nav-quote {
  background: linear-gradient(135deg, var(--gb-blue), var(--gb-cyan)) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(21, 143, 255, 0.25);
}

.panel .button.nav-contact:hover,
.panel .button.nav-quote:hover {
  transform: translateY(-2px) !important;
}

/* =========================
   SIDEBAR MOBILE
   ========================= */

.sidebar {
  background: rgba(5, 16, 29, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sidebar .content {
  padding: 38px 34px;
}

.sidebar-logo {
  display: block;
  margin-bottom: 32px;
}

.sidebar-logo img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

.sidebar .mainMenu li {
  font-size: 21px;
  line-height: 46px;
}

.sidebar .subMenu li {
  font-size: 15px;
  line-height: 30px;
  opacity: 0.8;
}

/* =========================
   GENERAL SLIDES
   ========================= */

.slide .content {
  position: relative;
}

.slide.fade-6 .content {
  background:
    radial-gradient(circle at 80% 50%, rgba(24, 199, 167, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(5, 12, 22, 0.9) 0%, rgba(5, 12, 22, 0.62) 43%, rgba(5, 12, 22, 0.36) 100%);
}

.slide .background {
  filter: saturate(1.08) contrast(1.04);
}

.slide h1 {
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.14;
  max-width: 680px;
  margin-bottom: 22px;
}

.slide p {
  max-width: 680px;
  color: var(--gb-soft-white);
  line-height: 1.62;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =========================
   HERO
   ========================= */

.hero-layout {
  min-height: 62vh;
}

.hero-text {
  font-size: 22px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.primary-cta,
.secondary-cta {
  border-radius: 13px;
  padding: 16px 24px 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.primary-cta {
  background: linear-gradient(135deg, var(--gb-blue), var(--gb-cyan)) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(21, 143, 255, 0.3);
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.primary-cta:hover,
.secondary-cta:hover {
  opacity: 1;
  transform: translateY(-3px) !important;
}

.primary-cta:hover {
  box-shadow: 0 22px 46px rgba(21, 143, 255, 0.38);
}

.hero-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  overflow: visible;
}

.hero-phone {
  width: auto;
  max-width: 340px;
  max-height: calc(100vh - 210px);
  object-fit: contain;
  animation: gbFloat 5.4s ease-in-out infinite;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.46));
}

@keyframes gbFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* =========================
   SERVICE TEXT SECTIONS
   Sin tarjetas grises detrás del texto
   ========================= */

.service-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-width: 760px !important;
}

.service-card.left {
  text-align: left;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.service-card h1 {
  max-width: 760px;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.service-card p {
  max-width: 720px;
  font-size: 21px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.45);
}

.service-card .eyebrow {
  margin-bottom: 20px;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.service-points span {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* =========================
   VISUAL CARD / SLIDER
   ========================= */

.visual-card {
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.visual-card img {
  border-radius: 20px;
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}

.visual-card:hover img {
  transform: scale(1.025);
}

.dots .dot::after {
  background: #ffffff;
  box-shadow: 0 0 14px rgba(24, 199, 167, 0.5);
}

/* =========================
   CONTACT
   ========================= */

.contact-card {
  text-align: center;
  padding: 48px 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 199, 167, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.contact-card h1,
.contact-card p {
  margin-left: auto;
  margin-right: auto;
}

.contact-logo {
  width: 270px;
  max-width: 80%;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.32));
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-note {
  margin-top: 26px;
  margin-bottom: 0;
  font-size: 15px;
  opacity: 0.72;
}

/* =========================
   BOTTOM PANEL
   ========================= */

.panel.bottom {
  padding: 12px 30px;
}

.panel.bottom .left a {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.firstSlide .panel.bottom .nextSlide svg {
  animation: gbArrow 3.8s infinite;
}

@keyframes gbArrow {
  0%, 78%, 100% {
    transform: translateY(0);
  }

  88% {
    transform: translateY(9px);
  }
}

/* =========================
   BUTTON OVERRIDES
   ========================= */

.button {
  transition: all 0.3s ease !important;
}

.button:hover {
  opacity: 1;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1180px) {
  .panel.top {
    padding: 14px 24px;
  }

  .panel .sections .menu li {
    margin: 0 8px;
    font-size: 15px;
  }

  .panel .logo img {
    height: 50px;
  }

  .hero-phone {
    max-width: 360px;
  }
}

@media (max-width: 1023px) {
  .panel .sections.desktop {
    display: none;
  }

  .panel .sections.compact {
    display: table;
  }

  .panel.top {
    padding: 12px 18px;
  }

  .panel .logo img {
    height: 48px;
  }

  .container .wrap:not(.noSpaces),
  .container .wrap.spaceWrap,
  .container .wrap .spaceWrap {
    padding: 110px 28px 80px;
  }

  .slide h1 {
    font-size: 38px;
  }

  .slide p,
  .service-card p {
    font-size: 18px;
  }

  .hero-phone {
    max-width: 320px;
    margin-top: 35px;
  }

  .service-card,
  .contact-card {
    padding: 34px 26px;
    border-radius: 24px;
  }

  .visual-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .panel.top {
    background: rgba(8, 18, 32, 0.78);
  }

  .panel .logo img {
    height: 44px;
  }

  .slide.fade-6 .content {
    background:
      radial-gradient(circle at 50% 18%, rgba(24, 199, 167, 0.14), transparent 38%),
      linear-gradient(180deg, rgba(5, 12, 22, 0.82) 0%, rgba(5, 12, 22, 0.74) 48%, rgba(5, 12, 22, 0.9) 100%);
  }

  .slide h1 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.035em;
  }

  .hero-text,
  .slide p,
  .service-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 11px;
    padding: 7px 11px;
    margin-bottom: 14px;
  }

  .hero-buttons,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-phone {
    max-width: 270px;
  }

  .service-card,
  .contact-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .service-points {
    gap: 8px;
  }

  .service-points span {
    font-size: 13px;
    padding: 9px 12px;
  }

  .contact-logo {
    width: 220px;
  }

  .panel.bottom {
    display: none;
  }
}

@media (max-width: 435px) {
  .container .wrap:not(.noSpaces),
  .container .wrap.spaceWrap,
  .container .wrap .spaceWrap {
    padding: 100px 22px 70px;
  }

  .slide h1 {
    font-size: 29px;
  }

  .panel .logo img {
    height: 40px;
  }

  .sidebar-logo img {
    width: 190px;
  }
}

/* =========================
   ACCESSIBILITY
   ========================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero-phone {
    animation: none !important;
  }
}

/* =====================================================
   CONTACTO - TARJETA PREMIUM
   ===================================================== */

section[data-name="contacto"] .content {
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 171, 74, 0.18), transparent 34%),
    radial-gradient(circle at 78% 48%, rgba(24, 199, 167, 0.14), transparent 36%),
    linear-gradient(90deg, rgba(5, 12, 22, 0.88) 0%, rgba(5, 12, 22, 0.66) 48%, rgba(5, 12, 22, 0.82) 100%) !important;
}

section[data-name="contacto"] .wrap {
  padding-top: 135px !important;
  padding-bottom: 85px !important;
}

section[data-name="contacto"] .contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  text-align: left;

  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 46px !important;

  border-radius: 32px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06)) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    0 34px 90px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.14) !important;

  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

section[data-name="contacto"] .contact-copy h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-shadow: 0 10px 32px rgba(0,0,0,0.48);
}

section[data-name="contacto"] .contact-copy p {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 21px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 8px 24px rgba(0,0,0,0.42);
}

section[data-name="contacto"] .contact-panel {
  padding: 30px;
  border-radius: 24px;
  background: rgba(5, 16, 29, 0.38);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

section[data-name="contacto"] .contact-panel h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

section[data-name="contacto"] .contact-panel p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}

section[data-name="contacto"] .contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0;
}

section[data-name="contacto"] .contact-actions .button {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

section[data-name="contacto"] .contact-mini-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

section[data-name="contacto"] .contact-mini-info span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.76);
  font-size: 12px;
  font-weight: 700;
}

section[data-name="contacto"] .contact-logo,
section[data-name="contacto"] .contact-note {
  display: none !important;
}

/* Responsive contacto */

/* Ajuste fino contacto */

section[data-name="contacto"] .contact-card {
  max-width: 940px !important;
  padding: 42px 46px !important;
  border-radius: 30px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045)) !important;
}

section[data-name="contacto"] .contact-copy h1 {
  font-size: 46px;
  max-width: 500px;
  margin-bottom: 24px;
}

section[data-name="contacto"] .contact-copy p {
  max-width: 520px;
  font-size: 20px;
  line-height: 1.65;
}

section[data-name="contacto"] .contact-panel {
  background: rgba(4, 18, 31, 0.52);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 45px rgba(0,0,0,0.22);
}

section[data-name="contacto"] .contact-panel h3 {
  font-size: 25px;
}

section[data-name="contacto"] .contact-panel p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.76);
}

section[data-name="contacto"] .contact-actions .secondary-cta {
  background: rgba(37, 211, 102, 0.14) !important;
  border-color: rgba(37, 211, 102, 0.45);
}

section[data-name="contacto"] .contact-actions .secondary-cta:hover {
  background: rgba(37, 211, 102, 0.24) !important;
}

/* Ocultar chips de contacto */
section[data-name="contacto"] .contact-mini-info {
  display: none !important;
}

/* Responsive contacto */
@media (max-width: 1023px) {
  section[data-name="contacto"] .contact-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 30px !important;
  }

  section[data-name="contacto"] .contact-copy h1 {
    font-size: 40px;
    max-width: 100%;
  }

  section[data-name="contacto"] .contact-copy p {
    font-size: 18px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  section[data-name="contacto"] .wrap {
    padding-top: 115px !important;
    padding-bottom: 70px !important;
  }

  section[data-name="contacto"] .contact-card {
    padding: 28px 22px !important;
    border-radius: 24px !important;
  }

  section[data-name="contacto"] .contact-copy h1 {
    font-size: 32px;
  }

  section[data-name="contacto"] .contact-copy p {
    font-size: 16px;
  }

  section[data-name="contacto"] .contact-panel {
    padding: 22px;
    border-radius: 20px;
  }

  section[data-name="contacto"] .contact-actions {
    flex-direction: column;
  }

  section[data-name="contacto"] .contact-actions .button {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  section[data-name="contacto"] .contact-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 30px !important;
  }

  section[data-name="contacto"] .contact-copy h1 {
    font-size: 40px;
  }

  section[data-name="contacto"] .contact-copy p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  section[data-name="contacto"] .wrap {
    padding-top: 115px !important;
    padding-bottom: 70px !important;
  }

  section[data-name="contacto"] .contact-card {
    padding: 28px 22px !important;
    border-radius: 24px !important;
  }

  section[data-name="contacto"] .contact-copy h1 {
    font-size: 32px;
  }

  section[data-name="contacto"] .contact-copy p {
    font-size: 16px;
  }

  section[data-name="contacto"] .contact-panel {
    padding: 22px;
    border-radius: 20px;
  }

  section[data-name="contacto"] .contact-actions {
    flex-direction: column;
  }

  section[data-name="contacto"] .contact-actions .button {
    width: 100%;
  }
}

/* =====================================================
   NAVBAR FINAL - DESKTOP + MOBILE
   ===================================================== */

/* Desktop: acercar menú al logo */
@media (min-width: 1024px) {
  .panel.top .sections.desktop {
    display: flex !important;
    align-items: center;
    width: 100%;
  }

  .panel.top .sections.desktop > div {
    display: flex !important;
    align-items: center;
    width: auto !important;
    height: 58px;
  }

  .panel.top .sections.desktop .left {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .panel.top .sections.desktop .center {
    flex: 0 0 auto;
    justify-content: flex-start;
    margin-left: clamp(34px, 5vw, 80px);
  }

  .panel.top .sections.desktop .right {
    flex: 1 1 auto;
    justify-content: flex-end;
    margin-left: 32px;
  }

  .panel.top .sections.compact {
    display: none !important;
  }
}

/* Mobile / tablet: mostrar logo + hamburguesa */
@media (max-width: 1023px) {
  .panel.top .sections.desktop {
    display: none !important;
  }

  .panel.top .sections.compact,
  .panel.top .sections.compact.hidden {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .panel.top .sections.compact > div {
    display: flex !important;
    align-items: center;
    width: auto !important;
    height: 54px;
  }

  .panel.top .sections.compact .left {
    justify-content: flex-start;
  }

  .panel.top .sections.compact .right {
    justify-content: flex-end;
    margin-left: auto;
  }

  .panel.top .sections.compact .logo img {
    height: 42px;
  }

  .panel.top .button.actionButton.sidebarTrigger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }

  .panel.top .button.actionButton.sidebarTrigger svg {
    display: block !important;
    width: 21px;
    height: 21px;
    margin: 0;
    fill: #ffffff;
  }
}

/* =====================================================
   MOBILE NAVBAR - FIX DEFINITIVO HAMBURGUESA
   ===================================================== */

@media (max-width: 1023px) {
  .panel.top {
    padding: 10px 18px !important;
  }

  .panel.top .sections.desktop {
    display: none !important;
  }

  .panel.top .sections.compact.hidden.mobile-navbar,
  .panel.top .mobile-navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .panel.top .mobile-navbar .mobile-brand,
  .panel.top .mobile-navbar .mobile-actions {
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    height: 56px !important;
  }

  .panel.top .mobile-navbar .mobile-brand {
    justify-content: flex-start !important;
  }

  .panel.top .mobile-navbar .mobile-actions {
    justify-content: flex-end !important;
    margin-left: auto !important;
  }

  .panel.top .mobile-navbar .logo {
    display: inline-flex !important;
    align-items: center !important;
  }

  .panel.top .mobile-navbar .logo img {
    display: block !important;
    height: 42px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
  }

  .panel.top .mobile-menu-button {
    display: inline-flex !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    border-radius: 14px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
    transition: all 0.25s ease !important;
  }

  .panel.top .mobile-menu-button i {
    display: block !important;
    width: 21px !important;
    height: 2px !important;
    min-height: 2px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .panel.top .mobile-menu-button:hover {
    background: linear-gradient(135deg, #158fff, #18c7a7) !important;
    transform: translateY(-2px) !important;
  }
}

/* =====================================================
   MOBILE - OCULTAR IMÁGENES GRANDES EN HOME Y POB
   ===================================================== */

@media (max-width: 767px) {

  /* HOME: ocultar teléfono para que se vea primero el texto */
  section[data-name="home"] .hero-phone-wrap,
  section[data-name="home"] .hero-phone {
    display: none !important;
  }

  section[data-name="home"] .hero-layout {
    min-height: auto !important;
  }

  section[data-name="home"] .wrap {
    padding-top: 135px !important;
    padding-bottom: 90px !important;
  }

  section[data-name="home"] .left {
    text-align: left !important;
  }

  section[data-name="home"] h1 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    max-width: 100% !important;
  }

  section[data-name="home"] .hero-text {
    font-size: 17px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }

  section[data-name="home"] .hero-buttons {
    margin-top: 24px;
  }

  /* POB: ocultar tarjeta/slider de imagen en móvil */
  section[data-name="POB"] .cell-27,
  section[data-name="POB"] .visual-card {
    display: none !important;
  }

  section[data-name="POB"] .col-7-12 {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  section[data-name="POB"] .wrap {
    padding-top: 135px !important;
    padding-bottom: 90px !important;
  }

  section[data-name="POB"] h1 {
    font-size: 32px !important;
    line-height: 1.16 !important;
    max-width: 100% !important;
  }

  section[data-name="POB"] p {
    font-size: 16px !important;
    line-height: 1.58 !important;
    max-width: 100% !important;
  }

  section[data-name="POB"] .service-points {
    margin-top: 24px;
    margin-bottom: 26px;
  }

  section[data-name="POB"] .primary-cta {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 435px) {
  section[data-name="home"] h1,
  section[data-name="POB"] h1 {
    font-size: 29px !important;
  }

  section[data-name="home"] .wrap,
  section[data-name="POB"] .wrap {
    padding-top: 125px !important;
    padding-bottom: 80px !important;
  }
}