:root {
  --ut-shadow: 0 20px 55px rgba(10, 34, 71, 0.12);
  --ut-shadow-soft: 0 14px 34px rgba(12, 78, 163, 0.1);
  --ut-radius: 28px;
  --ut-radius-small: 20px;
  --ut-primary: var(--global-palette1, #0c4ea3);
  --ut-primary-dark: var(--global-palette2, #0a2247);
  --ut-ink-strong: var(--global-palette3, #172033);
  --ut-ink: var(--global-palette4, #253553);
  --ut-muted: var(--global-palette5, #62708b);
  --ut-surface-soft: var(--global-palette7, #eef3fa);
  --ut-surface: var(--global-palette8, #f4f7fb);
  --ut-base: var(--global-palette9, #ffffff);
  --ut-accent: var(--global-palette10, #ff8b2b);
  --ut-accent-hover: var(--global-palette14, #e56f11);
}


 {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(12, 78, 163, 0.08), transparent 32%),
    linear-gradient(180deg, var(--ut-surface) 0%, var(--ut-surface-soft) 100%);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.ut-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.ut-header-inner,
.ut-footer-inner,
.site-main > article,
.site-main > .type-page,
.site-main > .type-post {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.ut-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.ut-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  color: var(--ut-ink-strong);
}

.ut-brand-mark {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ut-brand-copy {
  font-size: 0.82rem;
  color: var(--ut-muted);
}

.ut-nav {
  margin-left: auto;
}

.ut-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ut-nav a {
  color: var(--ut-ink-strong);
  text-decoration: none;
  font-weight: 700;
}

.ut-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ut-kadence-toolbar {
  background: linear-gradient(90deg, var(--ut-primary), var(--global-palette12, #1560c0));
  color: var(--ut-base);
}

.ut-kadence-toolbar-inner,
.ut-kadence-footer-cta-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.ut-kadence-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.ut-kadence-toolbar-copy {
  margin: 0;
  font-weight: 700;
}

.ut-kadence-toolbar-actions,
.ut-kadence-footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ut-lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ut-primary) 14%, transparent);
  background: color-mix(in srgb, var(--ut-primary) 4%, transparent);
  color: var(--ut-primary);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ut-kadence-footer-cta {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--ut-primary-dark) 0%, var(--ut-primary) 100%);
  color: var(--ut-base);
}

.ut-kadence-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.ut-kadence-footer-cta h2,
.ut-kadence-footer-cta p {
  color: var(--ut-base);
  margin-block: 0;
}

.ut-button-outline-light {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.ut-button,
.wp-element-button,
.wp-block-button__link {
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.ut-button:hover,
.wp-block-button__link:hover,
.wp-element-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(12, 78, 163, 0.18);
}

.ut-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
}

.ut-button-primary {
  background: var(--ut-accent);
  color: var(--ut-base);
}

.ut-button-outline {
  background: transparent;
  border-color: color-mix(in srgb, var(--ut-primary) 18%, transparent);
  color: var(--ut-primary);
}

.wp-block-button.is-style-outline > .wp-block-button__link {
  border: 1px solid rgba(12, 78, 163, 0.18);
  color: #0c4ea3;
  background: transparent;
}

.entry-content {
  padding: 0;
}

.entry-content > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.entry-content > * + * {
  margin-top: 1.5rem;
}

.entry-content .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.ut-pattern-shell,
.ut-section-shell,
.ut-page-hero {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

.ut-page-hero,
.ut-section-shell {
  background: transparent;
}

.ut-eyebrow,
.ut-card-kicker,
.ut-media-label,
.ut-header-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #ff8b2b;
}

.ut-section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.ut-section-title,
.ut-page-hero h1,
.ut-page-hero h2 {
  letter-spacing: -0.04em;
}

.ut-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 34, 71, 0.96), rgba(12, 78, 163, 0.88)),
    linear-gradient(90deg, rgba(255, 139, 43, 0.14), transparent 40%);
  color: #ffffff;
}

.ut-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.32), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.ut-hero-inner,
.ut-band,
.ut-trust-band,
.ut-cta-strip,
.ut-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
}

.ut-hero-grid {
  gap: 2rem;
}

.ut-hero-title {
  color: #ffffff;
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  margin-bottom: 1rem;
}

.ut-hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 48rem;
}

.ut-media-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 1.5rem;
  border-radius: var(--ut-radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 12px, rgba(255, 255, 255, 0.02) 12px, rgba(255, 255, 255, 0.02) 24px);
  box-shadow: var(--ut-shadow);
}

.ut-media-card-service,
.ut-media-card-portrait {
  min-height: 180px;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(12, 78, 163, 0.18), rgba(255, 139, 43, 0.14)),
    repeating-linear-gradient(135deg, rgba(12, 78, 163, 0.06), rgba(12, 78, 163, 0.06) 10px, rgba(255, 255, 255, 0.4) 10px, rgba(255, 255, 255, 0.4) 20px);
  border: 1px dashed rgba(12, 78, 163, 0.3);
  box-shadow: none;
}

.ut-media-title,
.ut-media-copy {
  color: #ffffff;
}

.ut-band {
  max-width: none;
  padding: 1.5rem 1rem;
  border-radius: 0 0 var(--ut-radius) var(--ut-radius);
  background: linear-gradient(90deg, #0c4ea3, #1560c0);
  box-shadow: var(--ut-shadow-soft);
}

.ut-band-copy {
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

.ut-card-grid {
  gap: 1.25rem;
}

.ut-service-card,
.ut-faq-card,
.ut-service-card-featured,
.ut-form-placeholder,
.ut-contact-card,
.ut-trust-band .wp-block-column {
  height: 100%;
  padding: 1.65rem;
  border-radius: var(--ut-radius-small);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 78, 163, 0.08);
  box-shadow: var(--ut-shadow-soft);
}

.ut-service-card h3,
.ut-faq-card h3,
.ut-service-card-featured h3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.ut-trust-band {
  padding-top: clamp(2.25rem, 5vw, 3rem);
  padding-bottom: clamp(2.25rem, 5vw, 3rem);
}

.ut-trust-band > .wp-block-columns {
  margin: 0;
}

.ut-cta-strip {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-left: clamp(1.5rem, 4vw, 2.5rem);
  padding-right: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--ut-radius);
  background:
    linear-gradient(135deg, #0a2247 0%, #0c4ea3 100%);
  color: #ffffff;
}

.ut-cta-strip h2,
.ut-cta-strip p {
  color: #ffffff;
}

.ut-about-grid,
.ut-contact-grid {
  gap: 1.5rem;
}

.ut-form-placeholder,
.ut-contact-card {
  min-height: 100%;
}

.wp-block-details {
  padding: 1.3rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 78, 163, 0.08);
  box-shadow: var(--ut-shadow-soft);
}

.wp-block-details summary {
  cursor: pointer;
  font-weight: 800;
  color: #172033;
}

.ut-footer {
  margin-top: auto;
  background: #0a2247;
  color: rgba(255, 255, 255, 0.78);
}

.ut-footer-inner {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.ut-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.ut-footer h2,
.ut-footer h3,
.ut-footer a {
  color: #ffffff;
}

.ut-footer a {
  text-decoration: none;
}

.ut-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ut-footer li + li {
  margin-top: 0.65rem;
}

.ut-footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.ut-whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: #1ba86d;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(27, 168, 109, 0.32);
}

.ut-whatsapp-float::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 960px) {
  .ut-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
  }

  .ut-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .ut-nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .ut-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ut-kadence-toolbar-inner,
  .ut-kadence-footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 781px) {
  .ut-header-actions {
    width: 100%;
    justify-content: center;
  }

  .ut-kadence-toolbar-actions,
  .ut-kadence-footer-cta-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .ut-hero-title {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .ut-whatsapp-float {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .ut-header-inner,
  .ut-footer-inner,
  .site-main > article,
  .site-main > .type-page,
  .site-main > .type-post,
  .ut-hero-inner,
  .ut-band,
  .ut-trust-band,
  .ut-cta-strip {
    width: min(100% - 1.25rem, 1180px);
  }

  .ut-footer-grid {
    grid-template-columns: 1fr;
  }
} /* <--- ESTA LLAVE FALTABA O ESTABA MAL CERRADA, ES LA QUE RECUPERA TODO */

/* Merge header with LLC hero */

.site-header,
#masthead,
.site-main-header-wrap,
.site-header-row-container-inner {
    background: #140021 !important;
    border: none !important;
    box-shadow: none !important;
}

.site-header-wrap,
.site-header-row,
.main-header-bar {
  background: transparent !important;
}

.llc-custom-hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(255,138,0,0.20), transparent 24%),
        radial-gradient(circle at 8% 90%, rgba(112,39,180,0.28), transparent 32%),
        linear-gradient(135deg, #140021 0%, #1b0033 48%, #250047 100%);
    padding: 0 0 110px;
    overflow: hidden;
}

.llc-custom-hero-inner {
    width: min(1700px, calc(100% - 140px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;
    gap: 48px;
}

.llc-custom-kicker {
    color: #ff8a00;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.llc-custom-title {
    margin: 0 0 28px;
    line-height: .95;
}

.llc-custom-title span {
    display: block;
    color: #fff;
    font-size: 88px;
    font-weight: 800;
}

.llc-custom-title strong {
    display: block;
    color: #ff8a00;
    font-size: 82px;
    font-weight: 800;
}

.llc-custom-text {
   max-width: 640px !important;
    color: rgba(255, 255, 255, 0.88) !important; /* El blanco fino que quieres */
    font-size: 20px !important;                 /* Tamaño elegante, no pequeño */
    line-height: 1.7 !important;
    font-weight: 360 !important;                /* Grosor ligero */
    margin-bottom: 42px !important;
    display: block !important;
    text-decoration: none !important;
}

.llc-custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    padding: 0 38px;
    border-radius: 18px;
    background: #ff8a00;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.llc-custom-button:hover {
    transform: translateY(-2px);
    background: #ff9d26;
}

.llc-custom-hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.llc-custom-hero-image {
    width: 165%;
    max-width: 1250px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
}

.llc-hero-features {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.llc-hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* LA MAGIA: La línea divisoria vertical */


.llc-hero-feature + .llc-hero-feature {
border-left: 1px solid rgba(255, 255, 255, 0.2) !important; 
}
.llc-hero-feature:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-3px) !important;
}

.llc-hero-feature:last-child { border: none; }

.llc-hero-feature-icon {
    width: 22px !important;   /* Más pequeño = más fino */
    height: 22px !important;
    background-color: #ff8a00;
    display: inline-block;
    flex-shrink: 0;
}

.icon-shield { 
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'></path></svg>");
    mask-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'></path></svg>");
}

.icon-tax { 
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='1' x2='12' y2='23'></line><path d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'></path></svg>");
    mask-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='1' x2='12' y2='23'></line><path d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'></path></svg>");
}

.icon-growth { 
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z'></path></svg>");
    mask-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z'></path></svg>");
}
.llc-hero-feature span:not(.llc-hero-feature-icon) {
    color: white;
    font-weight: 700;
    font-size: 20px;
}

@media (max-width: 980px) {
    .llc-custom-hero {
        padding: 110px 0 90px;
    }
    .llc-custom-hero-inner {
        grid-template-columns: 1fr;
    }
    .llc-custom-title span {
        font-size: 62px;
    }
    .llc-custom-title strong {
        font-size: 58px;
    }
    .llc-custom-text {
        font-size: 21px;
    }
}