/**
* Template Name: Invent
* Template URL: https://bootstrapmade.com/invent-bootstrap-business-template/
* Updated: May 12 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lato:wght@300;400;500;600;700;900&display=swap');

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Lato", sans-serif;
  --heading-font: "Cinzel", "Playfair Display", serif; /* Roman lapidaria, matchea la L del logo */
  --heading-font-alt: "Playfair Display", serif; /* Para casos donde necesitemos itálica o lowercase delicado */
  --nav-font: "Lato", sans-serif;
}

/* Global Colors - Escribanía Rondoni — branding cliente: Azul Francia + Blanco + Gris Perla */
:root {
  --background-color: #F1F3F5; /* Gris perla — fondo general */
  --default-color: #2A3441; /* Texto base — grafito con tinte azul */
  --heading-color: #003B6F; /* Azul Francia profundo — títulos y navy */
  --accent-color: #0072BB; /* AZUL FRANCIA — color por excelencia de la escribanía */
  --surface-color: #ffffff; /* Cards / contenedores boxed */
  --contrast-color: #ffffff; /* Texto sobre acento/heading */
  --pearl-gray: #ECEFF1; /* Gris perla claro — separadores y backgrounds suaves */
  --pearl-gray-mid: #B8C2CC; /* Gris perla medio — bordes, labels secundarios */
}

/* Nav Menu Colors - ajustadas para header claro */
:root {
  --nav-color: #003B6F;  /* Links del navmenu sobre fondo claro */
  --nav-hover-color: #0072BB; /* Hover/active del navmenu — Azul Francia */
  --nav-mobile-background-color: #003B6F; /* Menú mobile: mismo navy del header scrolled */
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #ffffff; /* Links mobile en blanco sobre navy */
  --nav-dropdown-hover-color: #ffffff;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f4f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: transparent;
  padding: 20px 0;
  transition: all 0.4s ease;
  z-index: 997;
  border-bottom: 1px solid transparent;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--accent-color);
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  margin: 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 42, 82, 0.20);
  letter-spacing: 0.5px;
  border: 2px solid #ffffff;
  text-transform: uppercase;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff;
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 42, 82, 0.35);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
    background-color: var(--heading-color); /* Azul Francia profundo al scrollear */
    box-shadow: 0 4px 24px rgba(0, 42, 82, 0.30);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    padding: 12px 0;
}

.scrolled .header .logo img {
    max-height: 42px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    /* Delineado fino blanco que traza el contorno del logo */
    filter:
      drop-shadow(0 0 0.5px rgba(255, 255, 255, 1))
      drop-shadow(0 0 1.5px rgba(255, 255, 255, 0.85))
      drop-shadow(0 0 0.5px rgba(255, 255, 255, 1));
}

/* Global Header on Scroll
------------------------------*/


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.75), 0 1px 3px rgba(255, 255, 255, 0.55);
  }

  /* Cuando se scrollea, el header es Azul Francia profundo → nav links blancos sin halo */
  .scrolled .navmenu a,
  .scrolled .navmenu a:focus {
    color: #ffffff;
    text-shadow: none;
  }

  /* Underline animado al hover/active */
  .navmenu a::after,
  .navmenu a:focus::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 12px;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .scrolled .navmenu a::after,
  .scrolled .navmenu a:focus::after {
    background-color: #ffffff;
  }

  .navmenu li:hover > a::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    transform: scaleX(1);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  .scrolled .navmenu li:hover>a,
  .scrolled .navmenu .active,
  .scrolled .navmenu .active:focus {
    color: #ffffff;
  }

  /* Indicador chevron del dropdown padre */
  .navmenu .dropdown > a .toggle-dropdown {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .navmenu .dropdown:hover > a .toggle-dropdown {
    transform: rotate(-180deg);
  }

  /* Panel del dropdown: blanco con stripe Azul Francia arriba */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 0.5rem 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: opacity 0.25s ease, top 0.25s ease, visibility 0.25s;
    border-radius: 6px;
    z-index: 99;
    box-shadow: 0 18px 40px rgba(0, 42, 82, 0.18), 0 4px 10px rgba(0, 42, 82, 0.08);
    border-top: 3px solid var(--accent-color);
    overflow: hidden;
  }

  .navmenu .dropdown ul li {
    min-width: 230px;
  }

  .navmenu .dropdown ul a {
    padding: 0.7rem 1.2rem;
    font-family: var(--nav-font);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--heading-color);
    display: block;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    text-shadow: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--accent-color);
    background-color: rgba(0, 114, 187, 0.06);
    border-left-color: var(--accent-color);
    padding-left: 1.4rem;
  }

  /* Item del dropdown que corresponde a la página actual */
  .navmenu .dropdown ul a.active {
    color: var(--accent-color);
    background-color: rgba(0, 114, 187, 0.10);
    border-left-color: var(--accent-color);
    padding-left: 1.4rem;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  /* En cualquier estado del header, el padre del dropdown NO usa el underline animado */
  .navmenu .dropdown > a::after {
    display: none !important;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 42, 82, 0.15);
  }

  .scrolled .mobile-nav-toggle {
    color: #ffffff;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 1.25rem 0;
    margin: 0;
    border-radius: 8px;
    background-color: var(--nav-mobile-background-color); /* Azul Francia profundo */
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border-top: 3px solid var(--accent-color); /* stripe Azul Francia arriba */
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color); /* blanco */
    padding: 0.9rem 1.5rem;
    font-family: var(--nav-font);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-shadow: none; /* limpia el halo blanco del estado transparent del header */
  }

  .navmenu a:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-left-color: var(--accent-color);
    padding-left: 1.75rem;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, 0.10);
    color: #ffffff;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #ffffff;
    color: var(--heading-color);
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    border-left-color: #ffffff;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #ffffff;
    color: var(--heading-color);
    transform: rotate(180deg);
  }

  /* En mobile, el underline animado del desktop no aplica */
  .navmenu a::after {
    display: none;
  }

  /* Dropdown en mobile: panel translúcido blanco dentro del menú navy */
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0.5rem 0;
    margin: 0.5rem 1rem 1rem;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 3px solid var(--accent-color);
    box-shadow: none;
    transition: all 0.4s ease-in-out;
    border-radius: 4px;
  }

  .navmenu .dropdown ul a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.6rem 1.25rem;
    border-left: none;
  }

  .navmenu .dropdown ul a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    padding-left: 1.4rem;
  }

  /* El padre del dropdown en mobile abre los hijos al tocarlo (necesita JS) */
  .navmenu .dropdown > a .toggle-dropdown {
    font-size: 12px;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  /* JS toggle: agrega .dropdown-active al <ul> hijo */
  .navmenu .dropdown > ul.dropdown-active {
    display: block;
  }

  .navmenu .dropdown:has(> ul.dropdown-active) > a .toggle-dropdown {
    transform: rotate(-180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.30);
    position: absolute;
    font-size: 28px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(1, 30, 56, 0.85); /* Overlay navy oscuro para matchear branding */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer — Azul Francia profundo, layout premium notarial
--------------------------------------------------------------*/
.footer {
  color: rgba(255, 255, 255, 0.85);
  background-color: var(--heading-color); /* Azul Francia profundo */
  font-family: var(--default-font);
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
}

/* Hairline azul francia arriba de todo el footer */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent-color) 30%,
    var(--accent-color) 70%,
    transparent 100%
  );
}

.footer .footer-top {
  padding: 80px 0 60px;
  position: relative;
}

/* === Bloque brand === */
.footer .footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer .footer-brand .footer-logo .logo-img {
  max-height: 48px;
  width: auto;
  filter: drop-shadow(0 0 4px rgba(143, 211, 255, 0.4));
}

.footer .footer-brand .footer-logo .brand-name {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.footer .footer-tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.75rem 0;
  max-width: 400px;
}

/* Social links circulares */
.footer .footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.04);
}

.footer .footer-social a:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--heading-color);
  transform: translateY(-3px);
}

/* === Columnas de links/contact === */
.footer .footer-heading {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
}

.footer .footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer .footer-list li {
  margin-bottom: 0.6rem;
}

.footer .footer-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer .footer-list a::before {
  content: "→";
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--pearl-gray-mid);
}

.footer .footer-list a:hover {
  color: #ffffff;
  padding-left: 16px;
}

.footer .footer-list a:hover::before {
  opacity: 1;
  left: 0;
}

/* === Contact list — íconos + texto === */
.footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer .footer-contact-list li i {
  color: var(--accent-color);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
}

.footer .footer-contact-list li a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer .footer-contact-list li a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.40);
}

/* === Bottom: copyright + credits === */
.footer .footer-bottom {
  background-color: rgba(0, 0, 0, 0.20);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.footer .footer-bottom .copyright {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer .footer-bottom .copyright strong {
  color: #ffffff;
  font-weight: 600;
}

.footer .footer-bottom .credits {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer .footer-bottom .credits a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
  transition: border-color 0.3s ease;
  margin-left: 0.25rem;
}

.footer .footer-bottom .credits a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* === Responsive footer === */
@media (max-width: 991.98px) {
  .footer .footer-top {
    padding: 60px 0 40px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-bottom-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  .footer .footer-tagline {
    max-width: none;
  }
}

/*--------------------------------------------------------------
# Preloader — logo Rondoni con anillo + barra de carga
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--heading-color); /* Azul Francia profundo */
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

/* Vignette radial sutil */
#preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(0, 114, 187, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(255, 255, 255, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* Cuando se quita el preloader */
#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  z-index: 1;
}

/* Wrapper logo + ring */
.preloader-logo-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo con pulse sutil */
.preloader-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(143, 211, 255, 0.45))
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.30));
  animation: preloader-pulse 2.2s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%, 100% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 12px rgba(143, 211, 255, 0.45))
      drop-shadow(0 0 2px rgba(255, 255, 255, 0.30));
  }
  50% {
    transform: scale(1.06);
    filter:
      drop-shadow(0 0 20px rgba(143, 211, 255, 0.65))
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.45));
  }
}

/* Anillo rotando alrededor del logo */
.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-right-color: rgba(255, 255, 255, 0.45);
  animation: preloader-spin 1.8s linear infinite;
}

.preloader-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: var(--accent-color);
  animation: preloader-spin 2.6s linear infinite reverse;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

/* Nombre de la marca */
.preloader-brand {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  text-align: center;
  opacity: 0;
  animation: preloader-fade-in 0.6s ease-out 0.2s forwards;
}

/* Barra de progreso indeterminada debajo */
.preloader-progress {
  position: relative;
  width: 180px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  border-radius: 0;
}

.preloader-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffff 50%,
    transparent
  );
  animation: preloader-progress 1.6s ease-in-out infinite;
}

@keyframes preloader-progress {
  0% { left: -40%; }
  100% { left: 100%; }
}

@keyframes preloader-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 575.98px) {
  .preloader-logo-wrap {
    width: 110px;
    height: 110px;
  }
  .preloader-logo {
    width: 75px;
    height: 75px;
  }
  .preloader-brand {
    font-size: 0.85rem;
    letter-spacing: 4px;
  }
  .preloader-progress {
    width: 150px;
  }
}

/*--------------------------------------------------------------
# Scroll Top / WhatsApp Float — estilo premium Azul Francia
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 28px;
  bottom: 28px;
  z-index: 99999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--heading-color); /* Azul Francia profundo */
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 28px rgba(0, 42, 82, 0.28),
    0 2px 6px rgba(0, 42, 82, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(8px);
}

/* Anillo pulse sutil — apenas se nota, "respira" cada 3s */
.scroll-top::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: scrollTopPulse 3s ease-out infinite;
  pointer-events: none;
}

@keyframes scrollTopPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.30);
    opacity: 0;
  }
}

/* Ícono limpio sin efectos */
.scroll-top i {
  font-size: 22px;
  color: #ffffff;
  transition: transform 0.3s ease;
  line-height: 1;
}

/* Hover: lift + Azul Francia más claro + sombra intensificada */
.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--accent-color);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 36px rgba(0, 114, 187, 0.45),
    0 4px 10px rgba(0, 42, 82, 0.22);
}

.scroll-top:hover i {
  transform: scale(1.08);
}

/* Estado visible */
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}






/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 80px;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 64px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: var(--pearl-gray-mid); /* Gris perla mid — detalle del branding */
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section — estilo editorial Rondoni
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  /* dvh respeta la altura visible del viewport en mobile (descontando barra del browser) */
  min-height: 100dvh;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #1a3a5c; /* fallback mientras carga la imagen */
}

/* Foto del hero en pseudo-elemento (preparado por si hay que rotar/escalar para corregir alguna imagen) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/salta-hero3.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero .hero-content-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Velo lateral gris perla / blanco para garantizar legibilidad sobre la foto */
.hero .hero-content-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(241, 243, 245, 0.94) 0%,
    rgba(241, 243, 245, 0.70) 35%,
    rgba(241, 243, 245, 0.25) 60%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
}

.hero .hero-content-wrapper .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  max-width: 560px;
}

/* Brand mark: logo + ESCRIBANÍA + línea */
.hero .brand-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero .brand-mark .brand-logo {
  max-height: 90px;
  width: auto;
  margin-bottom: 0.5rem;
}

.hero .brand-mark .brand-name {
  font-family: var(--default-font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 10px;
  color: var(--heading-color);
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero .brand-mark .brand-line {
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
  position: relative;
}

/* Segunda línea gris perla más finita y corta — detalle del branding */
.hero .brand-mark .brand-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  width: 30px;
  height: 1px;
  background-color: var(--pearl-gray-mid);
}

/* Eyebrow italic premium: tagline corto sobre el H1 */
.hero .hero-eyebrow {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--brand-gold);
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(255, 255, 255, 0.5);
}

@media (max-width: 991.98px) {
  .hero .hero-eyebrow {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .hero .hero-eyebrow {
    font-size: 0.9rem;
  }
}

/* Title editorial: serif, weight medium, color navy */
.hero .hero-title {
  font-family: var(--heading-font);
  font-size: 2.85rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.25rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.65), 0 2px 4px rgba(255, 255, 255, 0.45);
}

@media (max-width: 991.98px) {
  .hero .hero-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 767.98px) {
  .hero .hero-title {
    font-size: 1.7rem;
    letter-spacing: 0.8px;
  }
}

.hero .hero-description {
  font-family: var(--default-font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 2rem;
  max-width: 480px;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Wrapper de CTAs: dos botones lado a lado */
.hero .cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* CTA editorial primario: Azul Francia sólido, uppercase, letterspacing */
.hero .cta-wrapper .btn-primary {
  padding: 0.95rem 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 114, 187, 0.30);
  display: inline-flex;
  align-items: center;
}

.hero .cta-wrapper .btn-primary:hover {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 59, 111, 0.40);
}

/* ===== Botón WhatsApp premium con efectos (versión azul brand) ===== */
.hero .cta-wrapper .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem 0.5rem 0.55rem;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 8px 22px rgba(1, 87, 155, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero .cta-wrapper .btn-whatsapp:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #013F75 0%, #0288D1 100%);
  color: #ffffff;
  box-shadow:
    0 14px 32px rgba(1, 87, 155, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero .cta-wrapper .btn-whatsapp:active {
  transform: translateY(-1px);
}

/* Shimmer animado periódico */
.hero .cta-wrapper .btn-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-25deg);
  animation: waShimmer 4s ease-in-out infinite;
  animation-delay: 1.5s;
  z-index: 1;
  pointer-events: none;
}

@keyframes waShimmer {
  0%, 40% { left: -60%; }
  70% { left: 130%; }
  100% { left: 130%; }
}

/* Contenedor del ícono — sin fondo, solo posicionamiento para el pulse */
.hero .cta-wrapper .btn-whatsapp .wa-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.hero .cta-wrapper .btn-whatsapp .wa-icon-wrap i {
  color: #ffffff;
  font-size: 1.65rem;
  position: relative;
  z-index: 2;
}

.hero .cta-wrapper .btn-whatsapp .wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  animation: waPulse 2s ease-out infinite;
  z-index: 1;
}

.hero .cta-wrapper .btn-whatsapp .wa-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  animation: waPulse 2s ease-out 0.5s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* Label de dos líneas */
.hero .cta-wrapper .btn-whatsapp .wa-label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
  z-index: 2;
  position: relative;
}

.hero .cta-wrapper .btn-whatsapp .wa-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero .cta-wrapper .btn-whatsapp .wa-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.92;
  margin-top: 2px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Microcopy debajo de los CTAs */
.hero .cta-hint {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--default-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.88;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero .cta-hint i {
  color: var(--accent-color);
  font-size: 1.05rem;
}

.hero .cta-hint .cta-hint-sep {
  color: var(--pearl-gray-mid); /* Gris perla mid — detalle del branding */
  font-weight: 700;
  padding: 0 0.35rem;
  font-size: 1.1rem;
  line-height: 1;
}

/* ===== Responsive: Large desktop (≥1400px) — más aire ===== */
@media (min-width: 1400px) {
  .hero .hero-content {
    max-width: 620px;
  }
  .hero .hero-title {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }
}

/* ===== Responsive: Tablet landscape / small desktop (992–1199px) ===== */
@media (max-width: 1199.98px) {
  .hero .hero-content-wrapper {
    padding: 120px 0 50px;
  }
  .hero .brand-mark .brand-logo {
    max-height: 80px;
  }
}

/* ===== Responsive: Tablet (768–991px) ===== */
@media (max-width: 991.98px) {
  .hero .hero-content-wrapper {
    padding: 110px 0 50px;
  }
  .hero .hero-content {
    max-width: 520px;
  }
  .hero .hero-content-wrapper::before {
    background: linear-gradient(
      90deg,
      rgba(241, 243, 245, 0.94) 0%,
      rgba(241, 243, 245, 0.75) 50%,
      rgba(241, 243, 245, 0.30) 80%,
      transparent 100%
    );
  }
  .hero .brand-mark .brand-logo {
    max-height: 70px;
  }
  .hero .brand-mark .brand-name {
    font-size: 0.85rem;
    letter-spacing: 8px;
  }
  .hero .cta-wrapper .btn-whatsapp {
    padding: 0.5rem 1.25rem 0.5rem 0.5rem;
  }
  .hero .cta-wrapper .btn-whatsapp .wa-icon-wrap {
    width: 38px;
    height: 38px;
  }
  .hero .cta-wrapper .btn-whatsapp .wa-icon-wrap i {
    font-size: 1.25rem;
  }
  .hero .cta-wrapper .btn-whatsapp .wa-title {
    font-size: 0.88rem;
  }
}

/* ===== Responsive: Mobile (≤767px) ===== */
@media (max-width: 767.98px) {
  .hero {
    /* Mantiene viewport completo en mobile usando dvh (mejor para barras del browser) */
    min-height: 100vh;
    min-height: 100dvh;
    background-position: 70% center;
  }

  .hero .hero-content-wrapper {
    padding: 110px 0 50px;
  }

  /* En mobile el texto ocupa todo el ancho — velo vertical (top→bottom) */
  .hero .hero-content-wrapper::before {
    background: linear-gradient(
      180deg,
      rgba(241, 243, 245, 0.95) 0%,
      rgba(241, 243, 245, 0.85) 50%,
      rgba(241, 243, 245, 0.55) 100%
    );
  }

  .hero .hero-content {
    max-width: 100%;
  }

  .hero .hero-description {
    max-width: 100%;
  }

  .hero .hero-description br {
    display: none;
  }

  .hero .hero-title br {
    display: none;
  }

  .hero .brand-mark .brand-logo {
    max-height: 64px;
  }

  .hero .brand-mark .brand-name {
    font-size: 0.8rem;
    letter-spacing: 6px;
  }

  .hero .cta-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero .cta-wrapper .btn-primary {
    padding: 0.85rem 1.6rem;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    justify-content: center;
  }
  .hero .cta-wrapper .btn-whatsapp {
    justify-content: flex-start;
    padding: 0.45rem 1.25rem 0.45rem 0.45rem;
  }
  .hero .cta-wrapper .btn-whatsapp .wa-icon-wrap {
    width: 36px;
    height: 36px;
  }
  .hero .cta-hint {
    font-size: 0.78rem;
  }
}

/* ===== Responsive: Mobile chico (≤480px) ===== */
@media (max-width: 480px) {
  .hero .hero-content-wrapper {
    padding: 100px 0 40px;
  }
  .hero .hero-title {
    font-size: 1.45rem;
    letter-spacing: 0.5px;
  }
  .hero .brand-mark .brand-logo {
    max-height: 56px;
  }
  .hero .brand-mark .brand-name {
    letter-spacing: 4px;
  }
  .hero .cta-wrapper .btn-whatsapp .wa-title {
    font-size: 0.82rem;
  }
  .hero .cta-wrapper .btn-whatsapp .wa-subtitle {
    font-size: 0.65rem;
  }
}

/*--------------------------------------------------------------
# About Section — Toda la sección en Azul Francia con foto en card blanco
--------------------------------------------------------------*/
.about.section {
  padding: 110px 0 !important;
  background-color: var(--accent-color); /* Azul Francia sólido */
  position: relative;
  overflow: clip;
}

/* Patrón decorativo sutil para que el azul no quede totalmente plano */
.about.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(0, 59, 111, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(0, 42, 82, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about .row {
  align-items: center;
}

/* Foto en card gris perla elevado (no blanco puro — detalle del branding) */
.about .about-photo-card {
  background-color: var(--pearl-gray); /* Gris perla */
  padding: 14px 14px 18px;
  border-radius: 6px;
  border-bottom: 3px solid var(--pearl-gray-mid); /* Acento gris perla mid abajo */
  box-shadow:
    0 30px 60px rgba(0, 42, 82, 0.35),
    0 12px 24px rgba(0, 42, 82, 0.20);
  position: relative;
  display: block;
  transform: rotate(0deg);
  transition: transform 0.4s ease;
}

.about .about-photo-card:hover {
  transform: translateY(-4px);
}

.about .about-photo-card .about-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  object-position: center 18%;
}

/* Photo credit debajo de la card en blanco translúcido */
.about .photo-credit {
  margin-top: 1.5rem;
  text-align: center;
  color: #ffffff;
}

.about .photo-credit .credit-label {
  font-family: var(--default-font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--pearl-gray-mid); /* Gris perla mid — detalle del branding */
  display: block;
  margin-bottom: 0.4rem;
}

.about .photo-credit .credit-name {
  font-family: var(--heading-font-alt); /* Playfair italic — efecto "firma" */
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #ffffff;
  display: block;
}

.about .photo-credit .credit-line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--pearl-gray-mid); /* Gris perla mid — detalle del branding */
  margin: 0.7rem auto 0;
}

/* Contenido textual en blanco */
.about .about-content {
  padding-left: 1rem;
}

.about .about-eyebrow {
  font-family: var(--default-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 56px;
  display: inline-block;
}

.about .about-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  transform: translateY(-50%);
  opacity: 0.7;
}

.about .about-title {
  font-family: var(--heading-font);
  font-size: 2.1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.about .about-description {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}

.about .about-description strong {
  color: #ffffff;
  font-weight: 700;
}

/* Bajada / lead debajo del título */
.about .about-lead {
  font-family: var(--heading-font-alt);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 1.6rem;
  padding-left: 1.1rem;
  border-left: 3px solid rgba(255, 255, 255, 0.55);
}

/* Espaciado más ajustado entre párrafos consecutivos */
.about .about-description + .about-description {
  margin-top: -0.8rem;
}

/* Credencial: Registro Notarial / Matrícula */
.about .about-credential {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

.about .about-credential i {
  font-size: 1.7rem;
  color: #ffffff;
  flex-shrink: 0;
}

.about .about-credential .cred-line-1 {
  display: block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.about .about-credential .cred-line-2 {
  display: block;
  font-family: var(--default-font);
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  color: var(--pearl-gray-mid);
  margin-top: 0.15rem;
}

.about .about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.about .about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.about .about-features li i {
  color: #ffffff;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about .about-features li strong {
  color: #ffffff;
  font-weight: 700;
}

/* CTA blanco con texto Azul Francia para máximo contraste sobre el azul */
.about .btn-about {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.85rem;
  background-color: #ffffff;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 22px rgba(0, 42, 82, 0.35);
  border: 2px solid #ffffff;
}

.about .btn-about:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 42, 82, 0.45);
}

.about .btn-about i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.about .btn-about:hover i {
  transform: translateX(5px);
}

/* ===== Responsive About ===== */
@media (max-width: 991.98px) {
  .about.section {
    padding: 80px 0 !important;
  }
  .about .about-content {
    padding-left: 0;
    margin-top: 3rem;
    text-align: center;
  }
  .about .about-eyebrow {
    padding-left: 0;
  }
  .about .about-eyebrow::before {
    display: none;
  }
  .about .about-features li {
    text-align: left;
  }
  .about .about-photo-card {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .about.section {
    padding: 60px 0 !important;
  }
  .about .about-title {
    font-size: 1.85rem;
  }
  .about .about-photo-card {
    transform: rotate(0deg);
  }
}


/* ===== Ajustes de color para How We Work ===== */

:root {
  --color-primary: #003B6F;   /* Azul Francia profundo */
  --color-secondary: #0072BB; /* Azul Francia */
  --color-light: #F1F3F5;     /* Gris perla */
  --color-dark: #002A52;      /* Azul Francia oscuro */
  --color-accent: #B8C2CC;    /* Gris perla medio */
  --font-main: 'Lato', sans-serif;
}

/*--------------------------------------------------------------
# Localidades Section — listado editorial de zonas de atención
--------------------------------------------------------------*/
.localidades.section {
  background-color: #ffffff;
  padding: 100px 0 90px !important;
  position: relative;
  overflow: clip;
}

.localidades.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.localidades-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.localidades-header .eyebrow {
  font-family: var(--default-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.localidades-header h2 {
  font-family: var(--heading-font);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.25;
}

.localidades-header p {
  font-family: var(--default-font);
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 620px;
}

.localidades-header p strong {
  color: var(--heading-color);
  font-weight: 600;
}

/* Tarjeta principal con cabecera y lista */
.localidades-card {
  background-color: var(--pearl-gray);
  border-top: 4px solid var(--accent-color);
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
}

.localidades-card .municipios-label,
.localidades-card .parajes-label {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 1rem;
  padding-left: 50px;
  position: relative;
}

.localidades-card .municipios-label::before,
.localidades-card .parajes-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 2px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.localidades-card .parajes-label {
  margin-top: 1.75rem;
}

/* Pills de localidades */
.localidades-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.localidades-list li {
  font-family: var(--default-font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
  background-color: #ffffff;
  border: 1px solid var(--pearl-gray-mid);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.localidades-list li.is-municipio {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: #ffffff;
  font-weight: 600;
}

.localidades-list li.is-municipio:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 114, 187, 0.25);
}

.localidades-list li:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: rgba(0, 114, 187, 0.04);
}

/* Footer del card con tagline + CTA WhatsApp */
.localidades-footer {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--pearl-gray-mid);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.localidades-footer p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--default-color);
  font-style: italic;
}

.localidades-footer p strong {
  color: var(--heading-color);
  font-weight: 600;
  font-style: normal;
}

.localidades-footer .btn-localidad-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background-color: var(--accent-color);
  color: #ffffff;
  font-family: var(--default-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 114, 187, 0.28);
}

.localidades-footer .btn-localidad-wa:hover {
  background-color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 42, 82, 0.32);
}

@media (max-width: 767.98px) {
  .localidades.section {
    padding: 70px 0 60px !important;
  }
  .localidades-header h2 {
    font-size: 1.6rem;
    letter-spacing: 0.8px;
  }
  .localidades-card {
    padding: 1.75rem 1.5rem 1.5rem;
  }
  .localidades-card .municipios-label,
  .localidades-card .parajes-label {
    padding-left: 0;
  }
  .localidades-card .municipios-label::before,
  .localidades-card .parajes-label::before {
    display: none;
  }
  .localidades-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# How We Work — método notarial premium estilo editorial
--------------------------------------------------------------*/
.how-we-work.section {
  background-color: var(--pearl-gray); /* Gris perla — tercer color del branding */
  padding: 120px 0 100px !important;
  position: relative;
  overflow: clip;
}

/* Decoraciones de fondo: detalles Azul Francia muy sutiles */
.how-we-work.section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(0, 114, 187, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.how-we-work.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(0, 59, 111, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.how-we-work .container {
  position: relative;
  z-index: 1;
}

/* Header editorial */
.how-we-work-header {
  max-width: 720px;
  margin: 0 0 5rem 0;
  text-align: left;
}

.how-we-work-header .eyebrow {
  font-family: var(--default-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 50px;
}

.how-we-work-header .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 2px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.how-we-work-header h2 {
  font-family: var(--heading-font); /* Cinzel */
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.2;
  /* Overrides del .section-title global para que no aplique aquí (no usa .section-title) */
}

.how-we-work-header p {
  font-family: var(--default-font);
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.75;
  margin: 0;
  max-width: 600px;
}

.how-we-work-header p strong {
  color: var(--heading-color);
  font-weight: 600;
}

/* Lista de etapas */
.how-we-work .process-list {
  display: flex;
  flex-direction: column;
}

.how-we-work .process-step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  padding: 2.75rem 0;
  border-top: 1px solid var(--pearl-gray-mid);
  align-items: center;
  transition: background-color 0.35s ease;
}

.how-we-work .process-step:last-child {
  border-bottom: 1px solid var(--pearl-gray-mid);
}

.how-we-work .process-step:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.how-we-work .process-step:hover .step-numeral {
  color: var(--heading-color);
}

.how-we-work .process-step:hover .step-numeral-rule {
  width: 60px;
  background-color: var(--heading-color);
}

/* Numeral romano grande */
.how-we-work .step-numeral-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.how-we-work .step-numeral {
  font-family: var(--heading-font); /* Cinzel — lapidario perfecto para numerales romanos */
  font-size: 5.5rem;
  font-weight: 500;
  color: var(--accent-color);
  line-height: 1;
  letter-spacing: 2px;
  transition: color 0.35s ease;
}

.how-we-work .step-numeral-rule {
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 0.85rem;
  background-color: var(--accent-color);
  transition: width 0.35s ease, background-color 0.35s ease;
}

/* Contenido textual de la etapa */
.how-we-work .step-body {
  padding-right: 1rem;
}

.how-we-work .step-label {
  font-family: var(--default-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7A8794; /* gris perla más oscuro, legible */
  display: inline-block;
  margin-bottom: 0.6rem;
}

.how-we-work .step-title {
  font-family: var(--heading-font); /* Cinzel */
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.25;
}

.how-we-work .step-text {
  font-family: var(--default-font);
  font-size: 0.98rem;
  color: var(--default-color);
  line-height: 1.75;
  margin: 0;
  max-width: 640px;
}

.how-we-work .step-text strong {
  color: var(--heading-color);
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .how-we-work.section {
    padding: 90px 0 80px !important;
  }
  .how-we-work-header {
    margin-bottom: 3.5rem;
  }
  .how-we-work-header h2 {
    font-size: 1.95rem;
  }
  .how-we-work .process-step {
    grid-template-columns: 160px 1fr;
    gap: 2rem;
    padding: 2.25rem 0;
  }
  .how-we-work .step-numeral {
    font-size: 4.5rem;
  }
  .how-we-work .step-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 767.98px) {
  .how-we-work.section {
    padding: 70px 0 !important;
  }
  .how-we-work .process-step {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2rem 0;
  }
  .how-we-work .step-numeral-wrap {
    align-items: flex-start;
  }
  .how-we-work .step-numeral {
    font-size: 3.75rem;
    letter-spacing: 1.5px;
  }
  .how-we-work .step-numeral-rule {
    margin-top: 0.5rem;
    width: 32px;
  }
  .how-we-work .step-body {
    padding-right: 0;
  }
  .how-we-work .step-title {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
  }
  .how-we-work-header h2 {
    font-size: 1.6rem;
    letter-spacing: 0.8px;
  }
  .how-we-work-header .eyebrow {
    padding-left: 0;
  }
  .how-we-work-header .eyebrow::before {
    display: none;
  }
}



/*--------------------------------------------------------------
# Services Section — Grid editorial con inyecciones de Azul Francia
--------------------------------------------------------------*/
.services.section {
  /* Fondo gradiente pearl gray con tinte Azul Francia en la base */
  background: linear-gradient(180deg, #FAFBFC 0%, #E8EFF5 100%);
  padding: 120px 0 100px !important;
  position: relative;
  overflow: clip;
}

/* Decoraciones de fondo: dos blobs Azul Francia en esquinas opuestas */
.services.section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 45%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(0, 114, 187, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.services.section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(0, 59, 111, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .section-title {
  margin-bottom: 4rem;
}

.services .section-title h2 {
  color: var(--heading-color);
}

.services .section-title p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--default-color);
  line-height: 1.7;
}

/* Card base — Azul Francia full bg + texto blanco */
.services .service-item {
  display: flex;
  flex-direction: column;
  background-color: var(--accent-color);
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  overflow: hidden;
  color: #ffffff;
  box-shadow:
    0 16px 36px rgba(0, 42, 82, 0.18),
    0 4px 10px rgba(0, 42, 82, 0.10);
}

/* Stripe superior pearl gray — siempre visible */
.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--pearl-gray);
  transition: height 0.35s ease, background-color 0.35s ease;
}

/* Círculo decorativo blanco translúcido bottom-right (aparece en hover) */
.services .service-item::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
  transform: scale(0.8);
  pointer-events: none;
}

.services .service-item:hover {
  transform: translateY(-6px);
  background-color: var(--heading-color); /* pasa a Azul Francia profundo */
  box-shadow:
    0 22px 48px rgba(0, 42, 82, 0.28),
    0 8px 16px rgba(0, 42, 82, 0.15);
}

.services .service-item:hover::before {
  height: 5px;
  background-color: #ffffff;
}

.services .service-item:hover::after {
  opacity: 0.60;
  transform: scale(1);
}

.services .service-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Título — Cinzel lapidario uppercase en blanco */
.services .service-content h3 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  position: relative;
}

/* Hairline pearl gray debajo del título */
.services .service-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--pearl-gray-mid);
  transition: width 0.35s ease, background-color 0.35s ease;
}

.services .service-item:hover .service-content h3::after {
  width: 50px;
  background-color: #ffffff;
}

.services .service-content p {
  font-family: var(--default-font);
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.75rem 0;
  flex-grow: 1;
}

.services .service-content p strong {
  color: #ffffff;
  font-weight: 700;
}

/* Botón WhatsApp — blanco con texto navy sobre las cards Azul Francia */
.services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  padding: 0.65rem 1.2rem;
  background-color: #ffffff;
  color: var(--heading-color);
  font-family: var(--default-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 42, 82, 0.25);
}

.services .service-link i {
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Hover: pasa a Azul Francia y la flecha se desplaza */
.services .service-link:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 114, 187, 0.40);
}

.services .service-link:hover i {
  transform: translateX(4px);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .services.section {
    padding: 90px 0 70px !important;
  }
  .services .section-title {
    margin-bottom: 3rem;
  }
}

@media (max-width: 767.98px) {
  .services .service-item {
    padding: 2rem 1.75rem 1.75rem;
  }
  .services .service-content h3 {
    font-size: 1.05rem;
  }
}

/*--------------------------------------------------------------
# Why Us Section — 4 pilares editoriales sobre Azul Francia profundo
--------------------------------------------------------------*/
.why-us.section {
  background-color: var(--heading-color); /* Azul Francia profundo */
  padding: 120px 0 100px !important;
  position: relative;
  overflow: clip;
  color: #ffffff;
}

/* Decoración bg sutil */
.why-us.section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -8%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(0, 114, 187, 0.20) 0%, transparent 65%);
  pointer-events: none;
}

.why-us.section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

/* Header editorial centrado */
.why-us-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}

.why-us-header .eyebrow {
  font-family: var(--default-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--pearl-gray-mid);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.why-us-header h2 {
  font-family: var(--heading-font);
  font-size: 2.3rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.why-us-header p {
  font-family: var(--default-font);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 600px;
}

/* Pilares — lista vertical con hairlines */
.why-us .pillars {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  margin: 0 auto;
}

.why-us .pillar {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  transition: background-color 0.35s ease;
}

.why-us .pillar:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.why-us .pillar:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* Numeral 01/04 */
.why-us .pillar-num {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--heading-font);
  color: var(--pearl-gray-mid);
  letter-spacing: 1px;
  transition: color 0.35s ease;
}

.why-us .pillar:hover .pillar-num {
  color: #ffffff;
}

.why-us .pillar-num .num {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
}

.why-us .pillar-num .num-total {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.55;
}

/* Body del pilar */
.why-us .pillar-title {
  font-family: var(--heading-font);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.why-us .pillar-text {
  font-family: var(--default-font);
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 620px;
}

.why-us .pillar-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* CTA al pie */
.why-us-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 4.5rem;
  text-align: center;
}

.why-us-cta .cta-text {
  font-family: var(--default-font);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-style: italic;
}

.why-us .btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: var(--default-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.why-us .btn-cta-ghost:hover {
  background-color: #ffffff;
  color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.why-us .btn-cta-ghost i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.why-us .btn-cta-ghost:hover i {
  transform: translateX(5px);
}

/* ===== Responsive Why Us ===== */
@media (max-width: 991.98px) {
  .why-us.section {
    padding: 90px 0 80px !important;
  }
  .why-us-header {
    margin-bottom: 3.5rem;
  }
  .why-us-header h2 {
    font-size: 1.85rem;
  }
  .why-us .pillar {
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 2.25rem 0;
  }
  .why-us .pillar-num .num {
    font-size: 3rem;
  }
  .why-us .pillar-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .why-us.section {
    padding: 70px 0 !important;
  }
  .why-us-header h2 {
    font-size: 1.6rem;
    letter-spacing: 0.8px;
  }
  .why-us .pillar {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  .why-us .pillar-num {
    align-items: flex-start;
  }
  .why-us .pillar-num .num {
    font-size: 2.5rem;
  }
  .why-us .pillar-title {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
  .why-us-cta {
    margin-top: 3.5rem;
  }
}

/* (Overrides legacy de Services eliminados — el bloque principal de arriba ya define todo) */



/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 .cta-image-wrapper {
  position: relative;
}

.call-to-action-2 .cta-image-wrapper img {
  position: relative;
  z-index: 2;
  transform: scaleX(-1);
}

.call-to-action-2 .cta-image-wrapper .cta-pattern {
  position: absolute;
  width: 80%;
  height: 80%;
  bottom: -30px;
  right: -30px;
  background: repeating-linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%), color-mix(in srgb, var(--accent-color), transparent 98%) 10px, color-mix(in srgb, var(--accent-color), transparent 95%) 10px, color-mix(in srgb, var(--accent-color), transparent 95%) 20px);
  z-index: 1;
  border-radius: 1rem;
}

.call-to-action-2 .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .call-to-action-2 .cta-content h2 {
    font-size: 2rem;
  }
}

.call-to-action-2 .cta-content .lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.call-to-action-2 .cta-features {
  margin-bottom: 1.5rem;
}

.call-to-action-2 .cta-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.call-to-action-2 .cta-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

.call-to-action-2 .cta-features .feature-item span {
  font-size: 1rem;
}

.call-to-action-2 .cta-action .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.75rem;
  transition: all 0.3s ease;
}

.call-to-action-2 .cta-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.call-to-action-2 .cta-action .btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
  padding: 0.75rem 1.75rem;
  transition: all 0.3s ease;
}

.call-to-action-2 .cta-action .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .call-to-action-2 .cta-image-wrapper {
    margin-bottom: 2rem;
  }

  .call-to-action-2 .cta-image-wrapper .cta-pattern {
    width: 70%;
    height: 70%;
    bottom: -20px;
    right: -20px;
  }

  .call-to-action-2 .cta-action {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .call-to-action-2 .cta-action .btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-container {
  margin-bottom: 40px;
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.portfolio .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
  transform: translateY(0);
}

.portfolio .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio .portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.portfolio .portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
  width: 45px;
  height: 45px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .portfolio-card .portfolio-content {
  padding: 25px;
}

.portfolio .portfolio-card .portfolio-content .category {
  font-size: 14px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-content h3 {
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.portfolio .portfolio-card .portfolio-content h3:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-card .portfolio-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 6px 15px;
  }

  .portfolio .portfolio-card .portfolio-content {
    padding: 20px;
  }

  .portfolio .portfolio-card .portfolio-content h3 {
    font-size: 18px;
  }

  .portfolio .portfolio-card .portfolio-content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# FAQ Section — Accordion editorial sobre Azul Francia profundo
--------------------------------------------------------------*/
.faq.section {
  background-color: var(--heading-color); /* Azul Francia profundo (igual que Why Us) */
  padding: 120px 0 100px !important;
  position: relative;
  overflow: clip;
  color: #ffffff;
}

/* Decoración bg sutil — invertida respecto a Why Us para variar */
.faq.section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(0, 114, 187, 0.20) 0%, transparent 65%);
  pointer-events: none;
}

.faq.section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.faq .container {
  position: relative;
  z-index: 1;
}

/* Header editorial centrado */
.faq-header-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.faq-header-block .eyebrow {
  font-family: var(--default-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--pearl-gray-mid);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.faq-header-block h2 {
  font-family: var(--heading-font);
  font-size: 2.3rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.faq-header-block p {
  font-family: var(--default-font);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 600px;
}

/* Accordion contenedor */
.faq .faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

/* Cada item — uso <details> nativo de HTML5, no necesita JS */
.faq .faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0;
  background: transparent;
  transition: background-color 0.35s ease;
}

.faq .faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq .faq-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* Pregunta — toda la zona summary es clickeable */
.faq .faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  position: relative;
  outline: none;
}

/* Oculta el marker default de details/summary */
.faq .faq-question::-webkit-details-marker {
  display: none;
}
.faq .faq-question::marker {
  content: "";
}

/* Número editorial 01-06 a la izquierda */
.faq .faq-question .q-num {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--pearl-gray-mid);
  letter-spacing: 1px;
  min-width: 50px;
  transition: color 0.35s ease;
}

/* Texto de la pregunta */
.faq .faq-question .q-text {
  flex: 1;
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.4px;
  line-height: 1.4;
  text-transform: none;
  transition: color 0.35s ease;
}

/* Toggle + / - circular */
.faq .faq-question .q-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq .faq-question .q-toggle i {
  font-size: 1.1rem;
  color: #ffffff;
  transition: transform 0.35s ease;
  line-height: 1;
}

.faq .faq-item[open] .faq-question .q-num {
  color: #ffffff;
}

.faq .faq-item[open] .faq-question .q-toggle {
  background-color: #ffffff;
  border-color: #ffffff;
}

.faq .faq-item[open] .faq-question .q-toggle i {
  color: var(--heading-color);
  transform: rotate(45deg);
}

/* Respuesta */
.faq .faq-answer {
  padding: 0 0 1.75rem calc(50px + 1.5rem); /* alinea con el q-text */
  animation: faqAnswerReveal 0.4s ease;
}

.faq .faq-answer p {
  font-family: var(--default-font);
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 680px;
}

.faq .faq-answer p strong {
  color: #ffffff;
  font-weight: 600;
}

@keyframes faqAnswerReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footnote inferior */
.faq-footnote {
  margin-top: 4rem;
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-footnote p {
  font-family: var(--default-font);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.7;
}

.faq-footnote p strong {
  color: #ffffff;
  font-weight: 600;
}

.faq-footnote-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.50);
  padding-bottom: 1px;
  margin: 0 0.25rem;
  transition: border-color 0.3s ease;
}

.faq-footnote-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.faq-footnote-link i {
  font-size: 1rem;
}

/* ===== Responsive FAQ ===== */
@media (max-width: 991.98px) {
  .faq.section {
    padding: 90px 0 80px !important;
  }
  .faq-header-block {
    margin-bottom: 3.5rem;
  }
  .faq-header-block h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 767.98px) {
  .faq.section {
    padding: 70px 0 !important;
  }
  .faq-header-block h2 {
    font-size: 1.55rem;
    letter-spacing: 0.8px;
  }
  .faq .faq-question {
    gap: 1rem;
    padding: 1.4rem 0;
  }
  .faq .faq-question .q-num {
    min-width: 32px;
    font-size: 1rem;
  }
  .faq .faq-question .q-text {
    font-size: 1rem;
  }
  .faq .faq-question .q-toggle {
    width: 32px;
    height: 32px;
  }
  .faq .faq-answer {
    padding-left: calc(32px + 1rem);
    padding-bottom: 1.4rem;
  }
  .faq .faq-answer p {
    font-size: 0.92rem;
  }
  .faq-footnote {
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
}



/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  background-color: var(--surface-color);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-10px);
}

.team .team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}

.team .team-card:hover .team-social a {
  transform: translateY(0);
  opacity: 1;
}

.team .team-image {
  position: relative;
  overflow: hidden;
}

.team .team-image img {
  transition: transform 0.6s;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.team .team-overlay p {
  color: var(--contrast-color);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.team .team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team .team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--contrast-color);
  color: var(--accent-color);
  font-size: 1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.team .team-social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .team-content {
  padding: 1.5rem;
  text-align: center;
}

.team .team-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.team .team-content .position {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 30px;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .team .team-card {
    margin-bottom: 1.5rem;
  }

  .team .team-content {
    padding: 1.25rem;
  }

  .team .team-content h4 {
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

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

.testimonials .testimonial-content {
  padding: 40px 30px 30px;
  position: relative;
  flex-grow: 1;
}

.testimonials .testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.testimonials .testimonial-content .quote-icon {
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 42px;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: 0;
  opacity: 0.8;
}

.testimonials .testimonial-profile {
  padding: 20px 30px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.testimonials .rating {
  margin-bottom: 15px;
}

.testimonials .rating i {
  color: #ffc107;
  margin-right: 3px;
  font-size: 14px;
}

.testimonials .profile-info {
  display: flex;
  align-items: center;
}

.testimonials .profile-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--background-color);
  margin-right: 15px;
}

.testimonials .profile-info div {
  flex: 1;
}

.testimonials .profile-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

.testimonials .profile-info h4 {
  margin: 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .testimonials .testimonial-content {
    padding: 30px 20px 20px;
  }

  .testimonials .testimonial-content p {
    font-size: 15px;
  }

  .testimonials .testimonial-content .quote-icon {
    font-size: 36px;
    left: 20px;
  }

  .testimonials .testimonial-profile {
    padding: 15px 20px;
  }

  .testimonials .profile-info img {
    width: 45px;
    height: 45px;
  }
}

/*--------------------------------------------------------------
# Contact Section — Azul Francia profundo + cards glass + mapa
--------------------------------------------------------------*/
.contact.section {
  background-color: var(--heading-color); /* Azul Francia profundo */
  padding: 120px 0 100px !important;
  position: relative;
  overflow: clip;
  color: #ffffff;
}

/* Decoración bg sutil */
.contact.section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(0, 114, 187, 0.20) 0%, transparent 65%);
  pointer-events: none;
}

.contact.section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

/* Header editorial centrado */
.contact-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.contact-header .eyebrow {
  font-family: var(--default-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--pearl-gray-mid);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.contact-header h2 {
  font-family: var(--heading-font);
  font-size: 2.3rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.contact-header p {
  font-family: var(--default-font);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 620px;
}

/* === Info cards: glass sobre Azul Francia === */
.contact .info-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  border-top: 3px solid var(--accent-color); /* Azul Francia stripe arriba */
  padding: 2.5rem 1.75rem 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.contact .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  transition: all 0.35s ease;
}

.contact .info-card:hover .icon-box {
  background-color: #ffffff;
  border-color: #ffffff;
}

.contact .info-card .icon-box i {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.35s ease;
}

.contact .info-card:hover .icon-box i {
  color: var(--heading-color);
}

.contact .info-card h3 {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact .info-card p {
  font-family: var(--default-font);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.contact .info-card p strong {
  color: #ffffff;
  font-weight: 600;
}

.contact .info-card .info-meta {
  font-size: 0.82rem;
  color: var(--pearl-gray-mid);
  letter-spacing: 0.5px;
}

.contact .info-card .info-link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
  transition: border-color 0.3s ease;
}

.contact .info-card .info-link:hover {
  border-bottom-color: #ffffff;
}

/* === Formulario: card blanca elevada sobre el azul === */
.contact .form-wrapper {
  background-color: #ffffff;
  border-radius: 0;
  padding: 3rem 2.5rem;
  color: var(--default-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-top: 4px solid var(--pearl-gray-mid);
}

.contact .form-wrapper .input-group-text {
  background-color: var(--pearl-gray);
  color: var(--heading-color);
  border: 1px solid var(--pearl-gray-mid);
  border-right: 0;
  border-radius: 0;
  font-size: 1rem;
  padding: 0.75rem 1rem;
}

.contact .form-wrapper .form-control {
  background-color: #ffffff;
  color: var(--default-color);
  border: 1px solid var(--pearl-gray-mid);
  border-left: 0;
  border-radius: 0;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-family: var(--default-font);
}

.contact .form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 114, 187, 0.15);
  outline: none;
}

.contact .form-wrapper .form-control::placeholder {
  color: #7A8794;
}

.contact .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23003B6F' viewBox='0 0 16 16'%3E%3Cpath stroke='%23003B6F' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 10px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact .form-wrapper textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.contact .form-wrapper button {
  background-color: var(--accent-color);
  color: #ffffff;
  border: 2px solid var(--accent-color);
  border-radius: 4px;
  padding: 0.9rem 2.5rem;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 114, 187, 0.30);
  cursor: pointer;
}

.contact .form-wrapper button:hover {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 42, 82, 0.40);
}

/* === Mapa === */
.contact-map {
  margin-top: 3rem;
  background-color: #ffffff;
  padding: 8px;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-top: 4px solid var(--accent-color);
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(95%);
}

/* === Responsive ===  */
@media (max-width: 991.98px) {
  .contact.section {
    padding: 90px 0 80px !important;
  }
  .contact-header {
    margin-bottom: 3.5rem;
  }
  .contact-header h2 {
    font-size: 1.85rem;
  }
  .contact .form-wrapper {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 767.98px) {
  .contact.section {
    padding: 70px 0 !important;
  }
  .contact-header h2 {
    font-size: 1.55rem;
    letter-spacing: 0.8px;
  }
  .contact .form-wrapper {
    padding: 2rem 1.5rem;
  }
  .contact-map iframe {
    height: 320px;
  }
}




/* === Mensajes del formulario === */
.php-email-form .loading {
  display: none;
  color: #1c2230;
  text-align: center;
  padding: 15px;
  font-weight: 500;
}

.php-email-form .error-message {
  display: none;
  background: #dc3545;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 8px;
}

.php-email-form .sent-message {
  display: none;
  background: #198754;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 8px;
}

/* Muestra correctamente el mensaje activo */
.php-email-form .error-message.active,
.php-email-form .sent-message.active,
.php-email-form .loading.active {
  display: block;
}



/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-main-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main-image img {
  width: 100%;
  transition: transform 0.6s;
}

.service-details .service-main-image:hover img {
  transform: scale(1.05);
}

.service-details .service-main-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-details .service-main-image .experience-badge span {
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.service-details .service-main-image .experience-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.service-details .service-main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-details .service-main-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-main-content .section-header .section-subtitle {
  display: inline-block;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-details .service-main-content .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-details .service-main-content .section-header h2 {
    font-size: 28px;
  }
}

.service-details .service-main-content .lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.service-details .service-main-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.service-details .service-benefits {
  padding: 0;
  list-style: none;
  margin: 20px 0 0 0;
}

.service-details .service-benefits li {
  padding: 12px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.service-details .service-benefits li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-tabs {
  margin-top: 80px;
}

.service-details .service-tabs .nav-tabs {
  border: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 5px;
}

@media (max-width: 768px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .service-details .service-tabs .nav-tabs::-webkit-scrollbar {
    height: 5px;
  }

  .service-details .service-tabs .nav-tabs::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  color: var(--default-color);
  font-weight: 600;
  background: var(--surface-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 10px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content {
  padding: 40px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-tabs .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-tabs .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details .service-tabs .tab-content .feature-item {
  padding: 20px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 12px;
  height: 100%;
  transition: transform 0.3s;
}

.service-details .service-tabs .tab-content .feature-item:hover {
  transform: translateY(-5px);
}

.service-details .service-tabs .tab-content .feature-item i {
  color: var(--accent-color);
  font-size: 28px;
  margin-bottom: 15px;
}

.service-details .service-tabs .tab-content .feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-details .service-tabs .tab-content .feature-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.service-details .service-testimonial {
  margin-top: 80px;
}

.service-details .service-testimonial .testimonial-card {
  padding: 40px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-testimonial .testimonial-card .client-info {
  text-align: center;
}

.service-details .service-testimonial .testimonial-card .client-info img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 5px solid var(--background-color);
  margin-right: 20px;
}

@media (max-width: 767px) {
  .service-details .service-testimonial .testimonial-card .client-info img {
    margin: 0 auto 20px;
  }
}

.service-details .service-testimonial .testimonial-card .client-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-testimonial .testimonial-card .client-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 10px;
  font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .client-info .stars {
  color: #FFD700;
  font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .quote {
  position: relative;
  padding-left: 30px;
}

.service-details .service-testimonial .testimonial-card .quote i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-testimonial .testimonial-card .quote p {
  font-style: italic;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-cta {
  margin-top: 80px;
  padding: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--accent-color), transparent 40%));
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-cta h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.service-details .service-cta p {
  font-size: 18px;
  color: var(--contrast-color);
  opacity: 0.9;
  margin-bottom: 30px;
}

.service-details .service-cta .btn-service {
  display: inline-flex;
  align-items: center;
  background: var(--contrast-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s;
}

.service-details .service-cta .btn-service i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.service-details .service-cta .btn-service:hover {
  background: var(--background-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-cta .btn-service:hover i {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .service-details .service-cta {
    padding: 40px 20px;
  }

  .service-details .service-cta h3 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .service-details .service-main-content {
    margin-top: 30px;
  }

  .service-details .service-tabs {
    margin-top: 50px;
  }

  .service-details .service-testimonial,
  .service-details .service-cta {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .service-details .client-info {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .service-details .service-tabs .tab-content {
    padding: 30px 20px;
  }
}


/*--------------------------------------------------------------
# Service Detail Page — Escribanía Rondoni
--------------------------------------------------------------*/
.svc-hero {
  background: linear-gradient(150deg, #003B6F 0%, #002A52 60%, #00213F 100%);
  color: #ffffff;
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}

.svc-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.svc-breadcrumb {
  font-family: var(--default-font);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: var(--pearl-gray-mid);
  margin-bottom: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.svc-breadcrumb a {
  color: var(--pearl-gray-mid);
  text-decoration: none;
  transition: color 0.25s ease;
}

.svc-breadcrumb a:hover {
  color: #ffffff;
}

.svc-breadcrumb .sep {
  opacity: 0.5;
}

.svc-breadcrumb .current {
  color: #ffffff;
  font-weight: 600;
}

.svc-hero-eyebrow {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 40px;
  margin-bottom: 1.4rem;
}

.svc-hero-title {
  font-family: var(--heading-font);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin: 0 0 1rem;
}

.svc-hero-sub {
  font-family: var(--heading-font-alt);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0;
}

/* ---- Body ---- */
.svc-body {
  background-color: var(--background-color);
  padding: 70px 0 90px;
}

.svc-article {
  background: #ffffff;
  border-radius: 14px;
  padding: 3rem 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 42, 82, 0.08);
}

.svc-article .svc-lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.svc-article p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1.2rem;
}

.svc-article h2 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 2.4rem 0 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--pearl-gray);
}

.svc-check-list,
.svc-doc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.svc-check-list li,
.svc-doc-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--default-color);
}

.svc-check-list li i,
.svc-doc-list li i {
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--accent-color);
  font-size: 1.05rem;
}

.svc-note {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--pearl-gray);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
  margin-top: 2rem;
}

.svc-note i {
  color: var(--accent-color);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.svc-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--default-color);
}

/* ---- Sidebar ---- */
.svc-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.svc-cta-card {
  background: linear-gradient(155deg, #003B6F 0%, #00284d 100%);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 42, 82, 0.18);
}

.svc-cta-card h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.svc-cta-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.4rem;
}

.svc-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.9rem 1rem;
  background: #25D366;
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.svc-btn-wa:hover {
  background: #1ebe5a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
}

.svc-btn-wa i {
  font-size: 1.2rem;
}

.svc-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.8rem 1rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.svc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.svc-side-box {
  background: #ffffff;
  border: 1px solid var(--pearl-gray);
  border-radius: 14px;
  padding: 1.6rem 1.7rem;
}

.svc-side-box h4 {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--pearl-gray);
}

.svc-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-side-list li {
  margin-bottom: 0.15rem;
}

.svc-side-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.25s ease, padding 0.25s ease;
}

.svc-side-list a i {
  color: var(--pearl-gray-mid);
  font-size: 0.8rem;
  transition: color 0.25s ease;
}

.svc-side-list a:hover {
  color: var(--accent-color);
  padding-left: 0.35rem;
}

.svc-side-list a:hover i {
  color: var(--accent-color);
}

.svc-side-list .is-current a {
  color: var(--accent-color);
  font-weight: 700;
}

.svc-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-contact-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0.9rem;
}

.svc-contact-list li i {
  color: var(--accent-color);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.svc-contact-list a {
  color: var(--default-color);
  text-decoration: none;
}

.svc-contact-list a:hover {
  color: var(--accent-color);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .svc-hero {
    padding: 120px 0 48px;
  }
  .svc-hero-title {
    font-size: 2.1rem;
  }
  .svc-hero-sub {
    font-size: 1.1rem;
  }
  .svc-article {
    padding: 2rem 1.6rem;
  }
  .svc-sidebar {
    position: static;
    margin-top: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .svc-hero-title {
    font-size: 1.75rem;
  }
  .svc-article {
    padding: 1.6rem 1.2rem;
  }
}

/*--------------------------------------------------------------
# Asistente virtual — alineación con el botón flotante de WhatsApp
# (el botón de WhatsApp está en right:28px / 56×56; centramos la
#  burbuja del asistente sobre él y la apilamos arriba)
--------------------------------------------------------------*/
.ss-launcher { right: 27px !important; bottom: 98px !important; }
