  :root {
    --negro: #0a0a0a;
    --carbon: #111111;
    --gris-oscuro: #1c1c1c;
    --gris: #2e2e2e;
    --gris-medio: #8a8a8a;
    --gris-claro: #d4d4d4;
    --linea: #2a2a2a;
    --dorado: #b8973a;
    --dorado-claro: #d4af6a;
    --dorado-oscuro: #8a6e2a;
    --blanco: #f5f3ef;
    --blanco-puro: #ffffff;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--negro);
    color: var(--blanco);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--linea);
    backdrop-filter: blur(10px);
  }

  .nav-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .nav-logo .nombre {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--blanco);
    text-transform: uppercase;
  }

  .nav-logo .subtitulo {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--dorado);
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gris-claro);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dorado);
    transition: width 0.3s;
  }

  .nav-links a:hover {
    color: var(--blanco);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--dorado);
    color: var(--dorado) !important;
    font-size: 14px !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s !important;
  }

  .nav-cta:hover {
    background: var(--dorado) !important;
    color: var(--negro) !important;
  }

  .nav-cta::after {
    display: none !important;
  }

  /* BOTON LLAMADA FLOTANTE */
  .btn-llamar-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--dorado);
    color: var(--negro);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .btn-llamar-flotante:hover {
    transform: scale(1.1);
    background: var(--dorado-claro);
  }

  .btn-llamar-flotante svg {
    width: 26px;
    height: 26px;
  }

  /* DROPDOWN MENU */
  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--linea);
    border-top: 2px solid var(--dorado);
    list-style: none;
    padding: 16px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 200;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu li {
    padding: 0;
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--gris-claro);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
  }

  .dropdown-menu a::after {
    display: none !important;
  }

  .dropdown-menu a:hover {
    color: var(--blanco);
    background: var(--gris-oscuro);
    padding-left: 32px;
  }

  /* HERO */
  .hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 100px 60px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--dorado);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--dorado);
  }

  .hero-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--blanco);
  }

  .hero-titulo em {
    font-style: italic;
    color: var(--dorado-claro);
  }

  .hero-desc {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gris-claro);
    max-width: 420px;
    margin-bottom: 48px;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .btn-primario {
    padding: 16px 36px;
    background: var(--dorado);
    color: var(--negro);
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
  }

  .btn-primario:hover {
    background: var(--dorado-claro);
    transform: translateY(-2px);
  }

  .btn-secundario {
    padding: 16px 36px;
    border: 1px solid var(--gris);
    color: var(--gris-claro);
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-secundario:hover {
    border-color: var(--blanco);
    color: var(--blanco);
  }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%) brightness(0.5);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--negro) 0%, transparent 40%);
  }

  .hero-stats {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 40px;
  }

  .stat {
    text-align: right;
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--dorado);
    display: block;
    line-height: 1;
  }

  .stat-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gris-claro);
  }

  .hero-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--dorado-oscuro) 30%, var(--dorado-oscuro) 70%, transparent);
    opacity: 0.4;
  }

  /* LOGOTIPO MARCA DE AGUA */
  .hero-marca {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 200px;
    font-weight: 300;
    color: rgba(184, 151, 58, 0.04);
    pointer-events: none;
    letter-spacing: -10px;
    line-height: 1;
    z-index: 0;
  }

  /* FRANJA DORADA */
  .franja {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dorado), transparent);
  }

  /* SECCIÓN PILARES */
  .pilares {
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 2px 1fr 2px 1fr;
    gap: 0;
    border-bottom: 1px solid var(--linea);
  }

  .pilar {
    padding: 60px;
    transition: background 0.4s;
  }

  .pilar:hover {
    background: var(--gris-oscuro);
  }

  .pilar-sep {
    background: var(--linea);
  }

  .pilar-icono {
    width: 48px;
    height: 48px;
    margin-bottom: 32px;
    position: relative;
  }

  .pilar-icono svg {
    width: 100%;
    height: 100%;
    stroke: var(--dorado);
    fill: none;
    stroke-width: 1;
  }

  .pilar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    color: rgba(184, 151, 58, 0.1);
    font-weight: 300;
    position: absolute;
    top: -10px;
    right: -10px;
    line-height: 1;
  }

  .pilar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--blanco);
  }

  .pilar p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--gris-claro);
  }

  /* QUIÉNES SOMOS */
  .quienes {
    padding: 140px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    border-bottom: 1px solid var(--linea);
  }

  .quienes-texto .eyebrow {
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--dorado);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .quienes-texto .eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--dorado);
  }

  .quienes-texto h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 32px;
  }

  .quienes-texto h2 em {
    font-style: italic;
    color: var(--dorado-claro);
  }

  .quienes-texto p {
    font-size: 20px;
    line-height: 1.9;
    color: var(--gris-claro);
    margin-bottom: 20px;
  }

  .quienes-texto .firma {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--dorado);
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--linea);
  }

  .quienes-visual {
    position: relative;
  }

  .quienes-card {
    background: var(--gris-oscuro);
    border: 1px solid var(--linea);
    padding: 60px;
    position: relative;
  }

  .quienes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 80px;
    background: var(--dorado);
  }

  .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    color: var(--dorado);
    opacity: 0.2;
    line-height: 0.8;
    margin-bottom: 24px;
    display: block;
  }

  .quienes-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: var(--blanco);
    margin-bottom: 32px;
  }

  .quienes-card .atribucion {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dorado);
  }

  .logro-banner {
    margin-top: 24px;
    background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .logro-banner .monto {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--negro);
    white-space: nowrap;
  }

  .logro-banner .logro-texto {
    font-size: 15px;
    line-height: 1.6;
    color: var(--negro);
    opacity: 0.8;
  }

  /* SERVICIOS */
  .servicios-section {
    padding: 140px 60px;
    border-bottom: 1px solid var(--linea);
  }

  .seccion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
  }

  .seccion-header .eyebrow {
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--dorado);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .seccion-header .eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--dorado);
  }

  .seccion-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1.1;
  }

  .seccion-header h2 em {
    font-style: italic;
    color: var(--dorado-claro);
  }

  .ver-todos {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dorado);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: gap 0.3s;
  }

  .ver-todos:hover {
    gap: 20px;
  }

  .ver-todos::after {
    content: '→';
    font-size: 21px;
  }

  .servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--linea);
    border: 1px solid var(--linea);
  }

  .servicio-item {
    background: var(--negro);
    padding: 50px 40px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }

  .servicio-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dorado);
    transition: width 0.4s;
  }

  .servicio-item:hover {
    background: var(--gris-oscuro);
  }

  .servicio-item:hover::after {
    width: 100%;
  }

  .servicio-numero {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: rgba(184, 151, 58, 0.15);
    font-weight: 300;
    line-height: 1;
  }

  .servicio-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--blanco);
    line-height: 1.3;
  }

  .servicio-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gris-claro);
    flex: 1;
  }

  .servicio-link {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dorado);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
  }

  .servicio-item:hover .servicio-link {
    gap: 16px;
  }

  /* LOGRO DESTACADO */
  .logro-seccion {
    padding: 0 60px 140px;
  }

  .logro-full {
    background: var(--gris-oscuro);
    border: 1px solid var(--linea);
    border-left: 4px solid var(--dorado);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .logro-full .monto-grande {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--dorado);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 8px;
  }

  .logro-full .logro-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: var(--dorado-claro);
    margin-top: 8px;
    line-height: 1.2;
  }

  .logro-full .logro-sub {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gris-claro);
    margin-bottom: 32px;
  }

  .logro-full h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--blanco);
  }

  .logro-full p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--gris-claro);
  }

  /* EQUIPO */
  .equipo-section {
    padding: 140px 60px;
    border-top: 1px solid var(--linea);
    border-bottom: 1px solid var(--linea);
  }

  /* Centered specifically for Equipo */
  .equipo-section .seccion-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
    gap: 32px;
  }

  .equipo-section .seccion-header .eyebrow {
    justify-content: center;
  }

  .equipo-section .seccion-header .eyebrow::before,
  .equipo-section .seccion-header .eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--dorado);
  }

  .equipo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin: 80px auto 0;
    background: var(--linea);
    max-width: 900px;
  }

  .miembro {
    background: var(--negro);
    padding: 60px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    transition: background 0.3s;
  }

  .miembro:hover {
    background: var(--gris-oscuro);
  }

  .miembro-foto-wrap {
    width: 100px;
    height: 100px;
    border: 1px solid var(--linea);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
  }

  .miembro-foto-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--dorado);
  }

  .miembro-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter 0.3s;
  }

  .miembro:hover .miembro-foto {
    filter: grayscale(40%);
  }

  .miembro-info .cargo {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dorado);
    margin-bottom: 8px;
  }

  .miembro-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
  }

  .miembro-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gris-claro);
  }

  /* TESTIMONIOS */
  .testimonios-section {
    padding: 140px 60px;
    border-bottom: 1px solid var(--linea);
    background: var(--gris-oscuro);
  }

  .testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 80px;
    background: var(--linea);
  }

  .testimonio {
    background: var(--negro);
    padding: 50px 40px;
  }

  .estrellas {
    color: var(--dorado);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 24px;
  }

  .testimonio blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--blanco);
  }

  .testimonio .autor {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dorado);
  }

  /* CONTACTO */
  .contacto-section {
    padding: 140px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }

  .contacto-texto .eyebrow {
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--dorado);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .contacto-texto .eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--dorado);
  }

  .contacto-texto h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 48px;
  }

  .contacto-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contacto-dato {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--linea);
  }

  .contacto-dato-icono {
    width: 20px;
    color: var(--dorado);
    flex-shrink: 0;
    padding-top: 2px;
  }

  .contacto-dato-texto .label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gris-claro);
    margin-bottom: 4px;
  }

  .contacto-dato-texto .valor {
    font-size: 21px;
    color: var(--blanco);
  }

  .contacto-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gris-claro);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--gris-oscuro);
    border: 1px solid var(--linea);
    color: var(--blanco);
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--dorado);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-group select option {
    background: var(--gris-oscuro);
  }

  .btn-form {
    padding: 18px 40px;
    background: var(--dorado);
    color: var(--negro);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
  }

  .btn-form:hover {
    background: var(--dorado-claro);
    transform: translateY(-2px);
  }

  /* FOOTER */
  footer {
    background: var(--carbon);
    border-top: 1px solid var(--linea);
    padding: 80px 60px 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--linea);
    margin-bottom: 40px;
  }

  .footer-brand .nombre {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .footer-brand .eslogan {
    font-size: 15px;
    letter-spacing: 3px;
    color: var(--dorado);
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .footer-brand p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gris-claro);
    max-width: 300px;
  }

  .footer-col h4 {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--dorado);
    margin-bottom: 24px;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .footer-col ul li a {
    font-size: 16px;
    color: var(--gris-claro);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 1px;
  }

  .footer-col ul li a:hover {
    color: var(--blanco);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 15px;
    color: var(--gris-medio);
    letter-spacing: 1px;
  }

  /* ANIMACIONES */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-eyebrow {
    animation: fadeInUp 0.8s ease both;
  }

  .hero-titulo {
    animation: fadeInUp 0.8s ease 0.2s both;
  }

  .hero-desc {
    animation: fadeInUp 0.8s ease 0.4s both;
  }

  .hero-btns {
    animation: fadeInUp 0.8s ease 0.6s both;
  }

  .hero-stats {
    animation: fadeInUp 0.8s ease 0.8s both;
  }



  /* ========================================= */
  /* HERO NOSOTROS */
  /* ========================================= */
  .hero-page {
    padding: 180px 60px 120px;
    border-bottom: 1px solid var(--linea);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
    position: relative;
    overflow: hidden;
  }

  .hero-page::before {
    content: 'NOSOTROS';
    position: absolute;
    top: 60px;
    right: -20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 180px;
    color: rgba(184, 151, 58, 0.03);
    font-weight: 300;
    letter-spacing: -5px;
    pointer-events: none;
    white-space: nowrap;
  }

  .hero-page-eyebrow {
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--dorado);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .hero-page-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--dorado);
  }

  .hero-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 300;
    line-height: 1.05;
  }

  .hero-page h1 em {
    font-style: italic;
    color: var(--dorado-claro);
  }

  .hero-page-desc {
    font-size: 21px;
    line-height: 1.9;
    color: var(--gris-claro);
  }

  .hero-page-cita {
    border-left: 2px solid var(--dorado);
    padding-left: 24px;
    margin-top: 40px;
  }

  .hero-page-cita blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .hero-page-cita cite {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dorado);
    font-style: normal;
  }

  /* VALORES */
  .valores-section {
    padding: 120px 60px;
    border-bottom: 1px solid var(--linea);
  }

  .valores-titulo {
    text-align: center;
    margin-bottom: 80px;
  }

  .eyebrow {
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--dorado);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
  }

  .eyebrow::before,
  .eyebrow::after {
    content: '';
    flex: 0 0 40px;
    height: 1px;
    background: var(--dorado);
  }

  h2.seccion-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1.1;
    text-align: center;
  }

  h2.seccion-titulo em {
    font-style: italic;
    color: var(--dorado-claro);
  }

  .valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--linea);
    border: 1px solid var(--linea);
    margin-top: 60px;
  }

  .valor {
    background: var(--negro);
    padding: 60px 50px;
    text-align: center;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .valor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--dorado);
    transition: width 0.4s;
  }

  .valor:hover {
    background: var(--gris-oscuro);
  }

  .valor:hover::after {
    width: 60%;
  }

  .valor-letra {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: rgba(184, 151, 58, 0.12);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 24px;
    display: block;
  }

  .valor h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
  }

  .valor p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--gris-claro);
  }

  /* HISTORIA */
  .historia-section {
    padding: 140px 60px;
    border-bottom: 1px solid var(--linea);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .historia-visual {
    position: relative;
  }

  .historia-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--linea);
    position: relative;
  }

  .historia-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%) brightness(0.6);
    transition: transform 0.6s;
  }

  .historia-img-wrap:hover img {
    transform: scale(1.03);
  }

  .historia-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dorado);
    color: var(--negro);
    padding: 30px;
    text-align: center;
    border: 4px solid var(--negro);
  }

  .historia-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    display: block;
  }

  .historia-badge .label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .historia-texto .eyebrow-left {
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--dorado);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .historia-texto .eyebrow-left::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--dorado);
  }

  .historia-texto h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 32px;
  }

  .historia-texto h2 em {
    font-style: italic;
    color: var(--dorado-claro);
  }

  .historia-texto p {
    font-size: 20px;
    line-height: 1.9;
    color: var(--gris-claro);
    margin-bottom: 20px;
  }

  /* EQUIPO COMPLETO */
  .equipo-completo {
    padding: 140px 60px;
    border-bottom: 1px solid var(--linea);
  }

  .equipo-titulo {
    text-align: center;
    margin-bottom: 100px;
  }

  .miembros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--linea);
    border: 1px solid var(--linea);
  }

  .miembro-card {
    background: var(--negro);
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: background 0.3s;
  }

  .miembro-card:hover {
    background: var(--gris-oscuro);
  }

  .miembro-foto-full {
    width: 200px;
    overflow: hidden;
    position: relative;
  }

  .miembro-foto-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%);
    transition: filter 0.4s;
  }

  .miembro-card:hover .miembro-foto-full img {
    filter: grayscale(20%);
  }

  .miembro-foto-full::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--dorado) 50%, transparent);
  }

  .miembro-datos {
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .miembro-datos .cargo {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dorado);
  }

  .miembro-datos h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
  }

  .miembro-datos .bio {
    font-size: 18px;
    line-height: 1.9;
    color: var(--gris-claro);
  }

  .miembro-datos .especialidades {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  .tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--linea);
    color: var(--gris-claro);
    background: var(--gris-oscuro);
  }

  /* COMPROMISO */
  .compromiso-section {
    padding: 140px 60px;
    border-bottom: 1px solid var(--linea);
    background: var(--gris-oscuro);
    text-align: center;
  }

  .compromiso-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 48px;
  }

  .compromiso-section h2 em {
    font-style: italic;
    color: var(--dorado-claro);
  }

  .compromiso-section p {
    font-size: 20px;
    line-height: 1.9;
    color: var(--gris-claro);
    max-width: 600px;
    margin: 0 auto 48px;
  }


  /* ========================================= */
  /* SERVICIOS INDIVIDUALES                    */
  /* ========================================= */

  /* BREADCRUMB */
  .breadcrumb {
    padding: 120px 60px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gris-claro);
  }

  .breadcrumb a {
    color: var(--dorado);
    text-decoration: none;
    transition: color 0.3s;
  }

  .breadcrumb a:hover {
    color: var(--dorado-claro);
  }

  .breadcrumb .sep {
    color: var(--gris-medio);
  }

  .breadcrumb .actual {
    color: var(--blanco);
  }

  /* HERO SERVICIO */
  .hero-servicio {
    padding: 60px 60px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    border-bottom: 1px solid var(--linea);
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    /* For overlay handling */
  }

  .hero-servicio::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: -1;
  }

  .hero-servicio-eyebrow {
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--dorado);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .hero-servicio-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--dorado);
  }

  .hero-servicio h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 300;
    line-height: 1.05;
  }

  .hero-servicio h1 em {
    font-style: italic;
    color: var(--dorado-claro);
  }

  .hero-servicio-desc {
    font-size: 21px;
    line-height: 1.9;
    color: var(--gris-claro);
    margin-bottom: 40px;
  }

  .hero-servicio-num {
    position: absolute;
    top: 40px;
    right: 60px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 180px;
    font-weight: 300;
    color: rgba(184, 151, 58, 0.04);
    line-height: 1;
    pointer-events: none;
  }

  /* CONTENIDO SERVICIO */
  .servicio-contenido {
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
    border-bottom: 1px solid var(--linea);
  }

  .servicio-main h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 32px;
  }

  .servicio-main h2 em {
    font-style: italic;
    color: var(--dorado-claro);
  }

  .servicio-main h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin: 48px 0 24px;
    color: var(--dorado);
  }

  .servicio-main p {
    font-size: 20px;
    line-height: 1.9;
    color: var(--gris-claro);
    margin-bottom: 24px;
  }

  .servicios-lista {
    list-style: none;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .servicios-lista li {
    font-size: 18px;
    color: var(--blanco);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .servicios-lista li::before {
    content: '\2192';
    color: var(--dorado);
    font-size: 21px;
  }

  /* SIDEBAR */
  .servicio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .sidebar-card {
    background: var(--gris-oscuro);
    border: 1px solid var(--linea);
    padding: 40px;
  }

  .sidebar-card.destacado {
    border-color: var(--dorado);
    background: linear-gradient(to bottom, var(--gris-oscuro), var(--negro));
  }

  .sidebar-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--blanco);
  }

  .sidebar-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gris-claro);
    margin-bottom: 24px;
  }

  .btn-sidebar {
    display: inline-block;
    padding: 14px 24px;
    background: var(--dorado);
    color: var(--negro);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
  }

  .btn-sidebar:hover {
    background: var(--dorado-claro);
  }

  .sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--gris-claro);
  }

  .sidebar-contact-item .icon {
    color: var(--dorado);
    font-size: 21px;
  }

  .otros-servicios-lista {
    list-style: none;
  }

  .otros-servicios-lista li {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--linea);
    padding-bottom: 12px;
  }

  .otros-servicios-lista li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .otros-servicios-lista a {
    color: var(--gris-claro);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .otros-servicios-lista a::after {
    content: '\203A';
    color: var(--dorado);
    font-size: 24px;
  }

  .otros-servicios-lista a:hover {
    color: var(--dorado);
  }

  /* CTA SECTION */
  .cta-section {
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    background: var(--negro);
  }

  .cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
  }

  .cta-section h2 em {
    font-style: italic;
    color: var(--dorado-claro);
  }

  .cta-section p {
    font-size: 21px;
    line-height: 1.9;
    color: var(--gris-claro);
    margin-bottom: 32px;
  }

  /* ========================================= */
  /* RESPONSIVE LAYOUT & MOBILE MENU           */
  /* ========================================= */

  .nav-toggle {
    display: none;
  }

  .nav-toggle-label {
    display: none;
  }

  /* LAPTOP PEQUEÑO */
  @media screen and (max-width: 1366px) {
    .hero-left { padding: 0 40px 80px 40px; }
    .servicios-section, .pilares, .quienes, .logro-seccion, .equipo-section, 
    .testimonios-section, .contacto-section, .cta-section, .servicio-contenido,
    .compromiso-section {
      padding: 100px 40px;
    }
    .hero-servicio { padding: 60px 40px 100px; }
  }

  /* TABLET */
  @media screen and (max-width: 1024px) {

    /* Reduce Grid Columns */
    .valores-grid,
    .testimonios-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .servicios-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Reduce Padding */
    .hero-left {
      padding: 0 40px 80px 40px;
    }

    .logro-seccion,
    .equipo-section,
    .testimonios-section,
    .contacto-section,
    .quienes,
    .servicios-section,
    .pilares,
    .cta-section {
      padding: 80px 40px;
    }

    /* Scale Hero Eyebrow and Page Marks */
    .hero-page::before {
      font-size: 100px;
      top: 80px;
    }

    .hero-marca {
      font-size: 100px;
      bottom: 0;
      right: 0;
    }

    .servicio-numero {
      font-size: 120px;
    }

    /* Logro adjustments */
    .logro-full {
      grid-template-columns: 1fr;
      padding: 40px;
      gap: 40px;
    }
  }

  /* MOBILE */
  @media screen and (max-width: 768px) {

    /* Navigation Hamburger */
    .nav-toggle-label {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 101;
    }

    .nav-toggle-label span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--dorado);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform-origin: left center;
    }

    .nav-links {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      height: calc(100vh - 80px);
      background: rgba(10, 10, 10, 0.98);
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding-top: 40px;
      gap: 30px;
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      z-index: 99;
      overflow-y: auto;
    }

    .nav-toggle:checked~.nav-links {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }

    .nav-toggle:checked~.nav-toggle-label span:nth-child(1) {
      transform: rotate(45deg);
      width: 28px;
    }

    .nav-toggle:checked~.nav-toggle-label span:nth-child(2) {
      opacity: 0;
      width: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span:nth-child(3) {
      transform: rotate(-45deg);
      width: 28px;
    }

    .dropdown-menu {
      position: static;
      background: transparent;
      border: none;
      padding: 10px 0 0;
      min-width: 100%;
      opacity: 1;
      visibility: visible;
      transform: none;
      display: none;
      text-align: center;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
      display: block;
    }

    nav {
      padding: 0 20px;
    }

    /* Collapse Layouts to 1 Column */
    .hero,
    .quienes,
    .contacto-section,
    .cta-section,
    .hero-page,
    .historia-section,
    .servicio-contenido,
    .equipo-grid,
    .valores-grid,
    .testimonios-grid,
    .servicios-grid,
    .hero-servicio,
    .miembros-grid,
    .form-row {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .pilares {
      grid-template-columns: 1fr;
    }

    .pilar {
      padding: 40px 20px;
    }

    .pilar-sep {
      height: 1px;
      width: 100%;
      background: var(--linea);
    }

    /* Global Paddings & Margins */
    .hero-left {
      padding: 120px 20px 60px 20px;
    }

    .hero-right {
      height: 400px;
      order: -1;
    }

    /* Move visual to top on mobile */
    .hero {
      height: auto;
      display: flex;
      flex-direction: column-reverse;
    }

    .logro-seccion,
    .equipo-section,
    .testimonios-section,
    .contacto-section,
    .quienes,
    .servicios-section,
    .pilares,
    .cta-section,
    .valores-section,
    .historia-section,
    .equipo-completo,
    .compromiso-section,
    .servicio-contenido,
    .breadcrumb {
      padding: 60px 20px;
    }

    .hero-servicio {
      padding: 140px 20px 60px 20px;
    }

    /* Increased top padding to avoid header overlap */

    /* Typography Scale Down */
    .hero-titulo {
      font-size: clamp(36px, 10vw, 48px);
      margin-bottom: 24px;
    }

    h2,
    h2.seccion-titulo,
    .historia-texto h2,
    .cta-section h2,
    .compromiso-section h2,
    .seccion-header h2 {
      font-size: clamp(32px, 8vw, 40px);
    }

    .hero-page h1,
    .hero-servicio h1 {
      font-size: clamp(36px, 8vw, 44px);
    }

    .logro-full .monto-grande {
      font-size: clamp(32px, 12vw, 48px);
      white-space: nowrap;
      word-break: keep-all;
    }

    .logro-full .logro-subtitle {
      font-size: clamp(20px, 6vw, 24px);
      line-height: 1.3;
    }

    .logro-banner .monto {
      font-size: clamp(24px, 8vw, 32px);
      white-space: nowrap;
    }

    .valor-letra {
      font-size: 60px;
    }

    .seccion-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      margin-bottom: 40px;
    }

    .equipo-section .seccion-header {
      align-items: center;
    }

    .logro-full {
      padding: 30px 20px;
      gap: 24px;
    }

    .hero-stats {
      position: relative;
      bottom: auto;
      right: auto;
      margin-top: 20px;
      gap: 20px;
      text-align: left;
      justify-content: flex-start;
    }

    .stat {
      text-align: left;
    }

    .stat-num {
      font-size: 40px;
    }

    .historia-visual .historia-badge {
      position: relative;
      bottom: 0;
      right: 0;
      margin-top: -30px;
      z-index: 10;
      float: right;
      width: 140px;
      padding: 15px;
    }

    .contacto-info {
      margin-bottom: 40px;
    }

    /* 1. Fix Button row cutting off in Hero */
    .hero-btns {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
    }

    .hero-btns a {
      width: 100%;
      text-align: center;
    }

    /* 2. Move "$850M" Text Above (Reverse Flex/Grid order) */
    .logro-full {
      display: flex;
      flex-direction: column;
      padding: 30px 20px;
      gap: 24px;
    }

    /* 3. Remove Grayscale on Lawyer Photo */
    .miembro-foto {
      filter: none;
    }

    /* 5. Prevenir desbordamiento de correos largos en contacto móvil */
    .contacto-dato-texto {
      min-width: 0;
      flex: 1;
    }
    .contacto-dato-texto .valor {
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* 4. Sobreponer fotos y texto en nosotros.php para móviles */
    .miembro-card {
      grid-template-columns: 1fr;
    }
    .miembro-foto-full {
      width: 100%;
      height: 280px;
    }

    /* 4. Center Align 'Testimonios reales' */
    .testimonios-section .seccion-header {
      align-items: center;
      text-align: center;
    }

    /* 5. Fix Contact Form cutoffs and overlaps */
    .form-row {
      flex-direction: column;
      gap: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      max-width: 100%;
    }

    /* 6. Footer Layout fixes */
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }

    .footer-col ul {
      align-items: center;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 16px;
    }

    /* 8. Fix specific Service Page overlaps */
    .servicio-main {
      padding: 0;
      width: 100%;
      overflow-wrap: break-word;
    }

    .servicio-main h3 {
      font-size: 24px;
    }

    .sidebar-card {
      padding: 24px 20px;
    }

    .cta-section {
      padding: 60px 20px;
      gap: 30px;
      text-align: center;
    }

    .cta-section h2 {
      font-size: clamp(32px, 8vw, 40px);
    }

    .breadcrumb {
      flex-wrap: wrap;
      gap: 8px;
    }

    /* Fix Lawyer Biographies (image 2) */
    .miembro {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
    }

    .miembro-foto-wrap {
      width: 160px;
      height: 160px;
    }

    /* Fix Button Wrapping (image 4) */
    .btn-sidebar {
      white-space: normal;
      height: auto;
      line-height: 1.4;
      padding: 16px 20px;
      font-size: 12px;
    }

    /* Fix Text Cut Off and Global Paragraph scales (image 5) */
    p,
    .sidebar-card p,
    .miembro-info p,
    .hero-desc,
    .servicio-contenido p,
    blockquote {
      font-size: 16px !important;
      line-height: 1.6;
      word-wrap: break-word;
      max-width: 100%;
      overflow-wrap: break-word;
    }

    /* Prevent Horizontal Scroll */
    html,
    body {
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }

    img,
    svg {
      max-width: 100%;
      height: auto;
    }

    /* Target massive texts causing overlap */
    .quote-mark {
      font-size: 80px;
      margin-bottom: 12px;
    }

    .hero-servicio-num {
      display: none;
    }

    /* Ensure padding doesn't break box model */
    * {
      box-sizing: border-box;
    }

    .hero-page::before,
    .hero-servicio-num {
      display: none;
    }

    .miembro-card {
      grid-template-columns: 1fr;
    }

    .miembro-foto-full {
      width: 100%;
      height: 250px;
    }

    .miembro-datos {
      padding: 30px 20px;
    }

    /* ==== FIX DEFINITIVO DESBORDAMIENTO VISTA MÓVIL CONTACTO ==== */
    .contacto-section {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 60px 20px !important;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .contacto-dato-texto .valor {
        font-size: 16px !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
    }
    
    .contacto-form {
        width: 100% !important;
        max-width: 100% !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
  }