/* ========================================
   01) DESIGN TOKENS + GLOBAL BASE
======================================== */
:root {
    --bg-dark: #161719;
    --bg-light: #ececeb;
    --text-dark: #1b1d21;
    --text-light: #f2f3f5;
    --accent: #ced55d;
    --lavender: #aea4e3;
    --lavender-strip: #9f94d8;
    --line-dark: rgba(255, 255, 255, 0.14);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.45;
    padding-top: 58px;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}

/* ========================================
   02) HOME PAGE
======================================== */

/* Header */
header {
    background: var(--bg-dark);
    border-bottom: 1px solid rgb(255, 255, 255);
    padding: 0.6rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    max-width: none;
    width: 100%;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 38px;
    width: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.navbar-nav .nav-link,
.navbar-nav .nav-link:visited,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
    color: #ffffff;
}

nav ul a:hover {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 6px;
}

header .social-icons {
    display: flex;
    align-items: center;
    gap: 0.50rem;
    margin-left: 0.25rem;
}

header .social-icons a {
    color: var(--text-light);
    font-size: 1.2rem;
    text-decoration: none;
}

/* Hero */
.hero {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 610px;
    background: var(--bg-dark);
    position: relative;
}

.hero-image {
    min-height: 610px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78);
}

.hero-content {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 17rem 7.2rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    position: relative;
}

.hero-title {
    position: absolute;
    top: 4.2rem;
    left: 1.8rem;
    /* Pull title over the image/content split for the layered hero look. */
    transform: translateX(-34%);
    z-index: 3;
    text-transform: uppercase;
    font-size: clamp(1.9rem, 3.8vw, 4.05rem);
    line-height: 0.92;
    font-weight: 800;
    max-width: 14ch; 
    margin: 0;
}

.hero-line {
    display: block;
    white-space: nowrap;
    margin: 0.6rem;
}

.line-3 {
    white-space: nowrap;
    margin-left: 7.2rem;
}

.hero-highlight {
    background: #f4f4f4;
    color: #121316;
    padding: 0 0.08em;
}

.hero-content p:first-of-type {
    text-transform: uppercase;
    font-size: 1.07rem;
    font-weight: 650;
    line-height: 1.7;
    max-width: 30ch;
    margin-top: 0.55rem;
}

.hero-content p:last-of-type {
    font-size: 0.67rem;
    color: #d4d7dc;
    max-width: 60ch;
    line-height: 1.6;
}

.hero-content button,
.hero-content .hero-cta,
.about-content button,
.about-content .about-cta,
.services-section .cta-button,
.cta-section .cta-button {
    align-self: flex-start;
    border: 0;
    background: var(--accent);
    color: #101215;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.55rem 1.55rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.hero-content button:hover,
.hero-content .hero-cta:hover,
.about-content button:hover,
.about-content .about-cta:hover,
.services-section .cta-button:hover,
.cta-section .cta-button:hover {
    background: #dde47b;
}

/* About */
.about-section {
    width: 100%;
    height: 90%;
    max-width: none;
    margin: 2.2rem 0 0;
    background: #ececeb;
    padding: 4.25rem 1.5rem 3.1rem;
}

.about-section .row {
    max-width: 1260px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    object-fit: cover;
}

.about-image-left {
    align-self: end;
}

.about-image-left img {
    aspect-ratio: 4 / 4;
    max-width: 305px;
}

.about-image-right {
    align-self: start;
    margin-top: -3.2rem;
    
}

.about-image-right img {
    aspect-ratio: 5 / 5;
    max-width: 330px;
    margin-left: auto;
}

.about-content {
    max-width: 760px;
    margin: 0;
    display: grid;
    /* Keeps the asymmetric editorial layout stable across breakpoints. */
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "eyebrow ."
        "title title"
        ". description"
        ". button";
    column-gap: 2.5rem;
    row-gap: 0.85rem;
}

.about-content .eyebrow {
    grid-area: eyebrow;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.35;
    text-transform: uppercase;
    margin-bottom: 1.45rem;
    max-width: 30ch;
    margin-left: -6.2rem;
}

.about-title-wrap {
    grid-area: title;
    position: relative;
    width: fit-content;
    margin-bottom: 0.9rem;
    justify-self: center;
}

.about-content .mini-tag {
    display: inline-block;
    border: 1px solid #6d6f74;
    padding: 0.12rem 0.65rem;
    text-transform: uppercase;
    font-size: 0.67rem;
    letter-spacing: 0.08em;
    line-height: 1;
    background: #ececeb;
}

.tag-lgbtq {
    position: absolute;
    top: -1.5rem;
    left: -2rem;
}

.tag-migration {
    position: absolute;
    top: -1.15rem;
    right: -5rem;
}

.tag-racial {
    position: absolute;
    bottom: -4.32rem;
    left: 0.2rem;
}

.about-content h2 {
    text-transform: uppercase;
    line-height: 0.88;
    margin-bottom: 0;
    text-align: center;
}

.about-content h2 span {
    display: inline-block;
    font-weight: 900;
    font-size: clamp(3.4rem, 5.4vw, 5.7rem);
    letter-spacing: -0.03em;
}

.about-content h2 span:first-child {
    background: transparent;
    color: #1b1d21;
    box-shadow: none;
    margin-bottom: 0.12em;
}

.about-content h2 span:last-child {
    background: #1d1f23;
    color: #f8f8f8;
    box-shadow: 0.19em 0 0 #1d1f23, -0.19em 0 0 #1d1f23;
}

.about-content .description {
    grid-area: description;
    color: #1f2227;
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: 75ch;
    margin: 0.1rem 0 0 0;
    /* Align body copy with CTA on the second grid column. */
    transform: translateX(7.6rem);
}

.about-content button {
    grid-area: button;
    margin: 0.2rem 0 0 0;
    justify-self: start;
    display: inline-block;
    transform: translateX(7.6rem);
}

.about-content .about-cta {
    grid-area: button;
    margin: 0.2rem 0 0 0;
    justify-self: start;
    display: inline-block;
    transform: translateX(7.6rem);
}

/* Carrousel */
.carrousel {
    width: 100%;
    max-width: none;
    margin: 0;
    background: var(--lavender);
}

.carrousel-card {
    text-align: center;
    padding: 3rem 2.5rem 2.1rem;
}

.carrousel-card p {
    text-transform: uppercase;
    font-size: clamp(1.15rem, 2.35vw, 2.45rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 800;
    max-width: 41ch;
    margin: 0 auto;
}

.carrousel-card p span {
    background: #1b1d21;
    color: #fff;
    padding: 0 0.25rem;
}

.carrousel-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.4rem;
}

.carrousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1f2024;
    opacity: 0.45;
    cursor: pointer;
    border: 0;
    padding: 0;
}

.carrousel-dots .dot.is-active {
    opacity: 1;
}

.carrousel-strip {
    padding: 0.35rem 0;
    background: var(--lavender-strip);
    display: flex;
    gap: 2rem;
    overflow: hidden;
    white-space: nowrap;
}

.carrousel-strip span {
    font-size: 1.72rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #1c1d21;
    letter-spacing: 0.01em;
}

/* Testimonials */
.testimonials {
    width: 100%;
    max-width: none;
    margin: 0;
    background: var(--bg-dark);
    padding: 2.6rem 2rem 2.2rem;
}

.testimonial-grid {
    margin-top: 0;
    justify-content: center;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    border-left: 2px solid var(--line-dark);
    border-right: 2px solid var(--line-dark);
    padding: 0.8rem 1rem 1.1rem;
    text-align: center;
    color: #eaebed;
}

.testimonial-card img {
    width: 184px;
    height: 184px;
    border-radius: 2px;
    margin: 0 auto 0.95rem;
    object-fit: cover;
}

.testimonial-card p {
    font-size: 0.92rem;
    line-height: 1.46;
}

.testimonial-card .client-name {
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

/* Reviews */
.reviews-section {
    width: 100%;
    max-width: none;
    margin: 0;
    background: var(--bg-dark);
    color: #ffffff;
    padding: 0 2rem 2.5rem;
}

.reviews-header {
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    padding: 0.45rem 0;
    display: flex;
    gap: 1.8rem;
    overflow: hidden;
    white-space: nowrap;
}

.reviews-section .reviews-grid {
    margin-top: 1.25rem;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services-section {
    width: 100%;
    max-width: none;
    margin: 0;
    background: var(--bg-light);
    padding: 3.5rem 2.2rem 3.1rem;
    text-align: center;
}

.services-section h2 {
    text-transform: uppercase;
    font-size: clamp(1.65rem, 2.8vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    max-width: 28ch;
    margin: 0 auto 2.25rem;
}

.services-section h2 span {
    display: block;
    white-space: nowrap;
}

.services-grid {
    text-align: center;
    max-width: 1260px;
    margin: 0 auto 2.2rem;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.8rem;
    line-height: 0.95;
    margin-bottom: 0.9rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: 32ch;
    margin: 0 auto;
    text-align: justify;
    text-align-last: left;
}

.services-section .cta-button {
    margin: 0 auto;
    display: inline-block;
}

/* CTA */
.cta-section {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 510px;
    background:
        linear-gradient(rgba(16, 18, 21, 0.62), rgba(16, 18, 21, 0.56)),
        url("./media/img/cta.webp") center / cover no-repeat fixed;
    color: #f0f1f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.2rem 2.25rem 2.6rem;
}

.cta-section h2 {
    text-transform: uppercase;
    font-size: clamp(1.7rem, 3.9vw, 3.35rem);
    line-height: 0.9;
    letter-spacing: -0.025em;
    font-weight: 800;
    max-width: 32ch;
    margin-bottom: 2rem;
}

.cta-section .cta-highlight {
    display: inline-block;
    background: #f4f5f7;
    color: #121418;
    line-height: 0.94;
    padding: 0.02em 0.08em;
}

.cta-section .cta-button {
    display: inline-block;
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    padding: 0.56rem 1.45rem;
}

@media (max-width: 700px) {
    .cta-section {
        min-height: 320px;
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: clamp(1.25rem, 6.8vw, 1.85rem);
        max-width: 100%;
        margin-bottom: 1.2rem;
    }
}

/* ========================================
   03) ABOUT PAGE
======================================== */
.hero-about {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 18, 21, 0.45), rgba(16, 18, 21, 0.62));
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: #f4f5f7;
  padding: 3rem 1rem;
}

.hero-about h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 18ch;
}

.hero-about .tagline {
  margin: 0 0 18px;
  font-size: 0.92rem;
  color: #e1e4ea;
}

.hero-about .cta-button {
  display: inline-block;
  border: 0;
  background: #ced55d;
  color: #111318;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.58rem 1.35rem;
}

.hero-about .cta-button:hover {
  background: #dde47b;
}

/* Quote */
.quote-section {
  background: #161719;
  color: #f3f4f6;
  text-align: center;
  padding: 42px 16px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.quote-section p {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 3.1vw, 2.4rem);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
}

.quote-section p span {
  background: #ffffff;
  color: #111318;
  padding: 0 .18em;
  box-shadow: 0.18em 0 0 #ffffff, -0.12em 0 0 #ffffff;
  text-decoration: none;
}

.quote-section cite {
  font-style: normal;
  color: #cfd3da;
  font-size: 1rem;
  font-weight: 600;
}

/* Scrolling strip */
.banner-scroll {
  background: #ced55d;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 19, 24, 0.35);
}

.banner-scroll .scrolling-text {
  display: flex;
  width: max-content;
  gap: 2.2rem;
  padding: 0.45rem 0;
  animation: banner-marquee 18s linear infinite;
}

.banner-scroll .scrolling-text span {
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #17191d;
  white-space: nowrap;
}

@keyframes banner-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Scrolling strip 2 */
.banner-scroll2 {
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  background: #9f94d8;
  overflow: hidden;
}

.banner-scroll2 .scrolling-text {
  display: flex;
  width: max-content;
  gap: 2.2rem;
  padding: 0.45rem 0;
  animation: banner-marquee2 18s linear infinite;
}

.banner-scroll2 .scrolling-text span {
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #17191d;
  white-space: nowrap;
}

@keyframes banner-marquee2 {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/*Scrolling strip 3*/

.banner-scroll3 {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  background: #161719;
  overflow: hidden;
}

.banner-scroll3 .reviews-header {
  display: flex;
  width: max-content;
  gap: 1.8rem;
  padding: 0.45rem 0;
  animation: banner-marquee3 18s linear infinite;
}

@keyframes banner-marquee3 {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
   


.about-me-main {
  background: #ececeb;
  padding: 0;
}

.aboutme-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.aboutme-photo {
  margin: 0;
  border-right: 1px solid #c7c7c7;
}

.aboutme-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.aboutme-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
  color: #111318;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aboutme-text::after {
  content: "";
  position: absolute;
  left: 5%;
  bottom: 0;
  transform: none;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 168, 237, 1) 0%,
    rgba(180, 168, 237, 0.7) 28%,
    rgba(180, 168, 237, 0.28) 58%,
    rgba(180, 168, 237, 0) 78%
  );
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.aboutme-text h2,
.aboutme-text p {
  position: relative;
  z-index: 1;
}

.aboutme-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.aboutme-text p {
  max-width: 42ch;
  margin: 0 auto 22px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  text-align-last: center;
}

.aboutme-text p:last-child {
  margin-bottom: 0;
}

/* MY BACKGROUND (PAGE ABOUT ME)*/
.background-section {
  background: #161719;
  color: #f2f3f5;
  padding: 72px 0;
}

.background-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
}

.background-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
}

.background-accordion {
  border-top: 1px solid rgba(255,255,255,.35);
}

.bg-item {
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.bg-header {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.bg-icon {
  font-size: 1.4rem;
  line-height: 1;
  opacity: .9;
}

.bg-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.bg-content p {
  margin: 0 0 20px;
  max-width: 65ch;
  color: #d7dae0;
  font-size: 1rem;
  line-height: 1.45;
}

.bg-item.active .bg-content {
  max-height: 260px;
}

/* AWARENESS & ADVOCACY */
.advocacy-section {
  background: #ececeb;
  padding: 84px 0 96px;
}

.advocacy-inner {
  width: 100%;
  max-width: none;
  padding: 0 80px;
}

.advocacy-head {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.advocacy-section h2 {
  margin: 0;
  text-align: center;
  color: #111318;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
}

.adv-controls {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
}

.adv-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #1b1d21;
  border-radius: 50%;
  background: transparent;
  color: #1b1d21;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
}

.advocacy-slider {
  overflow: hidden;
}

.advocacy-track {
  --gap: 16px;
  --peek: 170px; /* parte visible de la 3ra card */
  display: flex;
  gap: var(--gap);
  transition: transform 0.35s ease;
  will-change: transform;
}

.adv-card {
  flex: 0 0 calc((100% - var(--peek) - (2 * var(--gap))) / 2.5);
  min-height: 520px;
  background: #101218;
  color: #f2f3f5;
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
}

.adv-card p,
.adv-tags {
  padding-left: 16px;
  padding-right: 16px;
}

.adv-card:first-child {
  background: #aea4e3;
  color: #111318;
}

.adv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 25px;
}

.adv-tags p {
  background: #b5abed;
  color: #111318;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: lowercase;
  line-height: 1;
  padding: 4px 10px;
}

.adv-card:first-child .adv-tags p {
  background: #101218;
  color: #fff;
}

.adv-card p strong {
  display: block;        
  font-size: 2rem;       
  line-height: 0.92;
  font-weight: 800;
  text-transform: uppercase;
}

.adv-card p {
  font-size: 18px;    
  line-height: 1.3;
}

.adv-card img {
  margin-top: auto;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

/* ABOUT PAGE RESPONSIVE */
@media (max-width: 1100px) {
  .aboutme-wrap {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .aboutme-photo {
    border-right: 0;
    border-bottom: 1px solid #c7c7c7;
  }

  .aboutme-photo img {
    min-height: 360px;
    max-height: 520px;
    object-position: center 24%;
  }

  .aboutme-text {
    padding: 46px 34px;
  }

  .background-section {
    padding: 56px 0;
  }

  .background-container {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .background-title h2 {
    max-width: 16ch;
  }

  .advocacy-section {
    padding: 64px 0 76px;
  }

  .advocacy-inner {
    padding: 0 28px;
  }

  .advocacy-head {
    margin-bottom: 42px;
    justify-content: space-between;
  }

  .adv-controls {
    position: static;
    transform: none;
  }

  .adv-card {
    min-height: 500px;
  }
}

/* Phone layout: single-column flow and compact spacing. */
@media (max-width: 767.98px) {
  .hero-about {
    min-height: 420px;
  }

  .hero-services,
  .contact-hero,
  .booking-hero {
    min-height: 420px;
  }

  .contact-hero h1 span, .booking-hero h1 span{
  line-height: 1.5;
}

  .hero-overlay {
    padding: 2.2rem 1rem;
  }

  .hero-about h1 {
    font-size: clamp(1.8rem, 8.2vw, 2.8rem);
    line-height: 0.96;
  }

  .quote-section {
    padding: 28px 12px 24px;
  }

  .quote-section p {
    font-size: clamp(1.05rem, 6.8vw, 1.8rem);
    line-height: 1.08;
  }

  .quote-section cite {
    font-size: 0.9rem;
  }

  .aboutme-text {
    padding: 30px 18px;
  }

  .aboutme-text h2 {
    margin-bottom: 16px;
    font-size: clamp(1.65rem, 7.8vw, 2.25rem);
  }

  .aboutme-text p {
    font-size: 0.95rem;
    line-height: 1.52;
    margin-bottom: 16px;
    max-width: 100%;
    text-align: center;
  }

  .aboutme-text::after {
    width: 170px;
    height: 170px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
  }

  .background-container {
    padding: 0 16px;
    gap: 18px;
  }

  .background-title h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    max-width: none;
  }

  .bg-header {
    padding: 15px 0;
    font-size: clamp(1rem, 5.4vw, 1.35rem);
  }

  .bg-icon {
    font-size: 1.15rem;
  }

  .bg-content p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-align: justify;
  }

  .advocacy-section {
    padding: 48px 0 58px;
  }

  .advocacy-inner {
    padding: 0 14px;
  }

  .advocacy-head {
    margin-bottom: 24px;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .advocacy-section h2 {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
    text-align: left;
  }

  .adv-controls {
    align-self: flex-end;
  }

  .adv-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #1b1d21;
  border-radius: 50%;
  background: transparent;
  color: #1b1d21;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
}

  .advocacy-track {
    --gap: 12px;
    --peek: 0px;
  }

 .adv-card {
  flex: 0 0 100%;
  min-height: 520px; /* antes 440px */
}

  .adv-card p strong {
    font-size: 1.55rem;
  }

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

  .adv-card img {
    height: 220px;
  }
  bg-content li {
    font-size: 0.9rem; /* Un poco más pequeño para que quepa mejor */
    text-align: left;  /* Las listas se leen mejor alineadas a la izquierda */
  }
}

/* SERVICES - TOP */
.hero-services {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-services-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  z-index: 0;
}

.hero-services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 18, 21, 0.58), rgba(16, 18, 21, 0.72));
  z-index: 1;
}

.hero-services-overlay {
  position: relative;
  z-index: 2;
  color: #f3f4f6;
}

.hero-services h1 {
  margin: 5rem 25px 30px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-services .subtitle {
  margin: 0 auto 30px;
  max-width: 86ch;
  font-size: 0.9rem;
  color: #d5d9df;
  line-height: 1.4;
}

.hero-services .cta-button {
  display: inline-block;
  border: 0;
  background: #ced55d;
  color: #111318;
  text-decoration: none;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.58rem 1.35rem;
}

.hero-services .cta-button:hover {
  background: #dde47b;
}

.intro-section {
  background: #161719;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 75px 20px;
}

.intro-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  margin: 0;
  color: #e5e8ed;
  font-size: 1.2rem;
  line-height: 1.20;
}

/* SERVICES PAGE CONTENT */
.container-soft {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-subtitle {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #4d5158;
  text-align: center;
}

/* HOW IT WORKS */
.how-works {
  background: var(--lavender);
  padding: 56px 0 64px;
}

.how-works .container-soft {
  max-width: 1080px;
}

.how-works h2 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-light);
}

.how-works .section-subtitle {
  margin: 25px 0 70px;
  text-align: center;
  font-size: 0.8rem;
  color: #e7eaee;
  letter-spacing: 0.01em;
}

.works-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  min-height: 220px;
  padding: 34px 18px 22px;
  text-align: center;
}

.work-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: #1b1d21;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 50px;
  text-align: center;
}

.work-card h3 {
  margin: 20px 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #1b1d21;
}

.work-card p {
  margin: 0 auto;
  max-width: 25ch;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #1f2227;
}

.services-feature {
  background: #ececeb;
  padding: 0 0 72px;
}

.services-feature .container-soft {
  max-width: none;
  padding: 0;
  margin: 0;
}

.services-feature-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 40%) 1fr;
  gap: 24px;
  background: #14161b;
  color: #eef1f5;
  margin: 0;
  align-items: stretch;
}

.services-feature-image {
  margin: 0;
}

.services-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
}

.services-feature-content {
  padding: 22px 28px 24px;
  max-width: 1120px;
  margin-right: auto;
}

.services-feature-content h2 {
  margin: 20px 0 30px;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.service-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 10px;
  align-items: start;
  padding-left: 0;
  position: relative;
}

.service-item::before {
  content: "\2192"; /* flecha */
  grid-column: 1;
  grid-row: 1;
  position: static;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 0.5;
  margin-top: 0.15rem;
}

.service-item + .service-item {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 10px;
}

.service-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.service-item p {
  margin: 0 1.2rem 8px 0;
  font-size: 12px;
  line-height: 1.5;
  color: #d8dde5;
  max-width: 85ch;
  text-align: justify;
}

.service-item .cta-button {
  display: inline-block;
  justify-self: start;
  width: fit-content;
  background: #ced55d;
  color: #111318;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.42rem 0.8rem;
  margin: 15px 0 15px;
}

.service-item h3, .service-item p, .service-item .cta-button {
  grid-column: 2;
} 

/* SERVICES PAGE RESPONSIVE */
@media (max-width: 1200px) {
  .services-feature-wrap {
    grid-template-columns: minmax(280px, 38%) 1fr;
  }

  .services-feature-content {
    padding: 20px 24px 20px;
  }
}

@media (max-width: 980px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .services-feature-wrap {
    grid-template-columns: minmax(250px, 36%) 1fr;
    gap: 18px;
  }

  .services-feature-image img {
    min-height: 420px;
    max-height: none;
    object-position: center 100%;
  }

  .service-item p {
    margin: 0 0 8px;
    text-align: left;
  }

  .service-item .cta-button {
    margin: 12px 0 14px;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .services-feature {
    padding: 0 0 44px;
  }

  .services-feature .container-soft {
    padding: 0;
  }

  .services-feature-content {
    padding: 16px 16px 18px;
  }

  .services-feature-content h2 {
    margin: 12px 0 20px;
    font-size: 1.45rem;
  }

  .service-item {
    padding-left: 14px;
  }

  .service-item h3 {
    font-size: 0.9rem;
  }

  .service-item p {
    font-size: 0.85rem;
  }

  .service-item .cta-button {
    font-size: 0.58rem;
    padding: 0.48rem 0.7rem;
  }

  .help-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .help-card h3,
  .help-card p {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .services-feature-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-feature-image {
    display: block;
  }

  .services-feature-image img {
    min-height: 230px;
    max-height: 300px;
    object-position: center 100%;
  }
}

@media (max-width: 820px) {
  .services-feature-content .service-item::before {
    display: none;
  }

  .services-feature-content .service-item {
    padding-left: 0;
  }

  .services-feature-content .service-item h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
  }

  .services-feature-content .service-item h3::after {
    content: "−";
    font-size: 1.05rem;
    line-height: 1;
    margin-left: 10px;
  }

  .services-feature-content .service-item.is-collapsed h3::after {
    content: "+";
  }
}

.help-with {
  background: #ececeb;
  padding: 24px 0 64px;
}

.help-with .container-soft {
  max-width: 1260px;
  padding: 0 20px 35px;
}

.help-with h2 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: #1b1d21;
}

.help-with .section-subtitle {
  margin: 15px 0 35px;
  text-align: center;
  font-size: 0.9rem;
  color: #3a3f46;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(360px, 400px));
  justify-content: center;
  gap: 1rem 1rem;
}

.help-card {
  background: transparent;
  min-height: auto;
  padding: 0;
  color: #1b1d21;
  margin: 0 auto;
}

.help-icon {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.help-card h3 {
  margin: 0 auto 8px;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1b1d21;
  font-weight: 700;
  max-width: 20ch;
  text-align: center;
}

.help-card p {
  margin: 0;
  font-size: 0.70rem;
  line-height: 1.45;
  color: #2b2f35;
  max-width: 30ch;
  text-align: justify;
}

@media (max-width: 820px) {
  .help-with {
    padding: 44px 0 52px;
  }

  .help-with .container-soft {
    padding: 0 16px 20px;
  }

  .help-with h2 {
    font-size: clamp(1.9rem, 8vw, 2.3rem);
    margin: 0 0 10px;
  }

  .help-with .section-subtitle {
    margin: 0 0 20px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .help-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .help-grid::-webkit-scrollbar {
    display: none;
  }

  .help-card {
    flex: 0 0 88%;
    width: 88%;
    max-width: 88%;
    margin: 0;
    background: #f4f4f4;
    border: 1px solid #d8d8d8;
    
    padding: 14px 12px 12px;
    text-align: center;
    scroll-snap-align: start;
  }

  .help-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
  }

  .help-card h3 {
    max-width: 100%;
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .help-card p {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .help-with .section-subtitle {
    font-size: 0.82rem;
  }

  .help-card p {
    font-size: 0.88rem;
  }
}

/* FOOTER V2 */
.footer-v2 {
  background: #161719;
  color: #eef0f3;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-v2__top {
  padding: 56px 0 34px;
}

.footer-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.05fr;
  gap: 34px;
}

.footer-v2__logo img {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
}

.footer-v2__brand p {
  max-width: 34ch;
  color: #c8cdd4;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.footer-v2__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-v2__social a {
  color: #f4f6f8;
  text-decoration: none;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.footer-v2__social a:hover {
  color: #111318;
  background: #ced55d;
  border-color: #ced55d;
}

.footer-v2__col h4 {
  font-size: 0.95rem;
  margin: 4px 0 14px;
  color: #ffffff;
  font-weight: 700;
}

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

.footer-v2__col li {
  margin-bottom: 9px;
}

.footer-v2__col a,
.footer-v2__col span {
  color: #c8cdd4;
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-v2__col a:hover {
  color: #ced55d;
}

.footer-v2__mid {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  padding: 12px 20px;
}

.footer-v2__legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-v2__legal a {
  color: #d7dbe1;
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-v2__legal a:hover {
  color: #ced55d;
}

.footer-v2__bottom {
  text-align: center;
  padding: 12px 20px 16px;
}

.footer-v2__bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: #b8bec7;
}

@media (max-width: 1100px) {
  .footer-v2__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
}

@media (max-width: 700px) {
  .footer-v2__top {
    padding: 40px 0 24px;
  }

  .footer-v2__container {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 22px;
  }

  .footer-v2__brand p {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .footer-v2__col h4 {
    margin-bottom: 10px;
  }

  .footer-v2__col a,
  .footer-v2__col span {
    font-size: 0.84rem;
  }

  .footer-v2__mid {
    padding: 10px 12px;
  }

  .footer-v2__legal {
    width: 100%;
    padding: 0 12px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 14px;
    align-items: center;
  }

  .footer-v2__legal a {
    font-size: 0.6rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1;
  }

  .footer-v2__bottom {
    padding: 10px 12px 14px;
  }

  .footer-v2__container > .footer-v2__col:nth-of-type(2) {
    display: none;
  }

  .footer-v2__container > .footer-v2__col:nth-of-type(3) {
    display: none;
  }
}

/*Whatsapp*/
.whatsapp-float {
    position: fixed;
    right: 1.4rem;
    bottom: 1.35rem;
    z-index: 100;
}

.whatsapp-float img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
   
}

.whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.whatsapp-modal.is-open {
    display: block;
}

.whatsapp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
}

.whatsapp-modal__panel {
    position: absolute;
    right: 7.2rem;
    bottom: 2rem;
    width: min(430px, calc(100% - 2rem));
    background: #161719;
    color: #f4f6f8;
    padding: 1.55rem 1.15rem 1.2rem;
    border: 2px solid #ffffff;
    
}

.whatsapp-modal__close {
    position: absolute;
    top: 0.95rem;
    right: 1.05rem;
    border: 0;
    background: transparent;
    color: #b6a8f2;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    text-transform: lowercase;
}

.whatsapp-modal__panel h3 {
    margin: 0 0 1rem;
    font-size: 2rem;
    line-height: 1.05;
    max-width: 17ch;
    text-transform: uppercase;
}

.whatsapp-modal__presets {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
}

.whatsapp-modal__presets button {
    border: 1px solid #6c6f77;
    background: transparent;
    color: #f4f6f8;
    padding: 0.72rem 0.75rem;
    text-align: left;
    cursor: pointer;
    font-size: 1.03rem;
    line-height: 1.35;
}

.whatsapp-modal__presets button.is-selected {
    border-color: #ced55d;
}

.whatsapp-modal__presets button:hover {
    border-color: #ced55d;
}

.whatsapp-modal__label {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    color: #ced55d;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.whatsapp-modal__textarea {
    width: 100%;
    min-height: 84px;
    margin-bottom: 0.95rem;
    border: 1px solid #6c6f77;
    background: #1f2127;
    color: #f4f6f8;
    padding: 0.55rem 0.65rem;
    resize: vertical;
    font-size: 0.92rem;
    line-height: 1.35;
}

.whatsapp-modal__send {
    border: 0;
    background: #ced55d;
    color: #131518;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    min-width: 130px;
    padding: 0.62rem 1rem;
    cursor: pointer;
    text-transform: uppercase;
}

.whatsapp-modal__send:hover {
    background: #dde47b;
}

@media (max-width: 700px) {
    .whatsapp-modal__panel {
        right: 1rem;
        left: 1rem;
        bottom: 7.2rem;
        width: auto;
        border-radius: 0;
    }

    .whatsapp-modal__panel h3 {
        font-size: 1.6rem;
    }

    .whatsapp-modal__presets button {
        font-size: 0.95rem;
    }

    .whatsapp-modal__send {
        font-size: 0.9rem;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-content {
        padding-top: 14rem;
    }

    .hero-title {
        transform: translateX(-28%);
    }

    .about-section {
        padding-top: 2.5rem;
    }

    .about-image-left,
    .about-image-right {
        max-width: 100%;
    }

    .about-image-right {
        margin-left: 0;
        margin-top: 0;
    }

    .about-content {
        display: block;
        max-width: 760px;
        margin: 0 auto;
    }

    .about-content .eyebrow {
        font-size: 0.86rem;
        margin-bottom: 1rem;
        margin-left: 0;
    }

    .about-content .description {
        font-size: 0.95rem;
        max-width: 40ch;
        margin-top: 1.2rem;
        transform: none;
    }

    .about-content button,
    .about-content .about-cta {
        transform: none;
    }

    .about-content h2 span {
        font-size: clamp(2.9rem, 7.3vw, 4.8rem);
    }

    .tag-lgbtq,
    .tag-migration,
    .tag-racial {
        position: static;
        margin: 0 0.4rem 0.45rem 0;
    }
}

@media (max-width: 820px) {
    header {
        padding: 0.7rem 1rem;
    }

    body {
        padding-top: 56px;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .navbar-collapse .navbar-nav {
        gap: 0.9rem;
        padding: 0.8rem 0 0.35rem;
    }

    .navbar-collapse .social-icons {
        margin-left: 0;
        padding-bottom: 0.75rem;
        font-size: 1.35rem;
        gap: 0.7rem;
    }

    .hero-image,
    .hero {
        min-height: unset;
    }

    .hero-image {
        height: 360px;
    }

    .hero-content {
        padding: 2.2rem 1.2rem;
    }

    .hero-title {
        position: static;
        transform: none;
        max-width: 12ch;
    }

    .carrousel-strip span {
        font-size: 1.12rem;
    }

    .testimonials,
    .reviews-section,
    .services-section,
    .cta-section,
    footer,
    .about-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .about-section {
        padding-top: 2rem;
        padding-bottom: 2.2rem;
    }

    .about-section .row {
        row-gap: 1.4rem;
    }

    .services-grid,
    .testimonial-grid,
    .reviews-section .reviews-grid {
        margin-top: 0;
    }

    .service-card h3 {
        font-size: 1.65rem;
        text-align: center;
        margin-bottom: 0.7rem;
    }

    .services-section h2 {
        max-width: none;
        margin-bottom: 1.6rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(1.2rem, 5.2vw, 1.6rem);
        line-height: 1.02;
    }

    .services-grid {
        text-align: center;
        row-gap: 1.6rem;
        margin-bottom: 1.4rem;
    }

    .service-card {
        max-width: 38ch;
        margin: 0 auto;
    }

    .service-card h3 {
        font-size: clamp(1.15rem, 4.2vw, 1.35rem);
        line-height: 1.1;
        max-width: 28ch;
        margin-left: auto;
        margin-right: auto;
        white-space: nowrap;
    }

    .service-card p {
        max-width: 33ch;
        margin: 0 auto;
        text-align: justify;
        text-align-last: left;
        hyphens: auto;
    }

    .services-section {
        padding-left: 1.3rem;
        padding-right: 1.3rem;
    }

    .services-section .cta-button {
        margin-left: auto;
        margin-right: auto;
    }

    /* Keep review cards on a single row on mobile (horizontal scroll). */
    .reviews-section .reviews-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.25rem;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge legacy */
    }

    .reviews-section .reviews-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .reviews-section .reviews-grid > [class*="col-"] {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
    }

    .about-content .eyebrow {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 1.35rem;
        margin-left: 0;
        text-align: center;
    }

    .about-title-wrap {
        width: 100%;
        justify-self: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.1rem;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-content .mini-tag {
        display: inline-block;
        margin: 0 0.25rem 0.45rem;
    }

    .about-content .description {
        font-size: 0.95rem;
        max-width: 100%;
        margin: 1.1rem auto 0;
        line-height: 1.55;
        text-align: center;
        transform: none;
    }

    .about-content button,
    .about-content .about-cta {
        margin: 1rem auto 1.2rem;
        display: block;
        transform: none;
    }

    .about-image-right {
        margin-top: 0.4rem;
    }

    .about-image-left img,
    .about-image-right img {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-section {
        min-height: 340px;
    }

    .whatsapp-float img {
        width: 93px;
        height: 93px;
    }
}

/* Tablet layout (iPad widths): keep desktop-style nav and about section */
/* Tablet layout: mini-desktop composition (not mobile stacking). */
@media (min-width: 768px) and (max-width: 991.98px) {
    header {
        padding: 0.55rem 0.85rem;
    }

    body {
        padding-top: 58px;
    }

    .logo img {
        height: 32px;
    }

    .nav-container {
        gap: 0.4rem;
        flex-wrap: nowrap;
    }

    .navbar-collapse .navbar-nav {
        gap: 0.78rem;
        padding: 0;
    }

    nav ul {
        gap: 0.78rem;
        margin-left: auto;
    }

    .navbar-nav .nav-link {
        font-size: 0.62rem;
        letter-spacing: 0.03em;
        white-space: nowrap;
    }

    header .social-icons {
        gap: 0.48rem;
        margin-left: 0.95rem;
        padding-bottom: 0;
    }

    header .social-icons a {
        font-size: 0.92rem;
        line-height: 1;
    }

    .hero {
        min-height: 520px;
    }

    .hero-image {
        min-height: 520px;
        height: auto;
    }

    .hero-content {
        padding: 8rem 2.1rem 2.7rem;
        gap: 0.95rem;
    }

    .hero-title {
        top: 2.5rem;
        left: 1.1rem;
        transform: translateX(-18%);
        max-width: 12ch;
        font-size: clamp(1.65rem, 3.2vw, 2.55rem);
    }

    .hero-line {
        margin: 0.38rem;
    }

    .line-3 {
        margin-left: 3.4rem;
    }

    .hero-content p:first-of-type {
        font-size: 0.92rem;
        max-width: 28ch;
        line-height: 1.7;
        margin-top: 0.3rem;
    }

    .hero-content p:last-of-type {
        font-size: 0.64rem;
        max-width: 44ch;
        line-height: 1.6;
    }

    .about-section {
        padding-top: 2.6rem;
        padding-bottom: 2.5rem;
    }

    .about-section .row {
        max-width: 1120px;
        row-gap: 1rem;
    }

    .about-image-left img {
        max-width: 220px;
    }

    .about-image-right {
        margin-top: -2rem;
    }

    .about-image-right img {
        max-width: 230px;
    }

    .about-content {
        max-width: none;
    }

    .about-content .eyebrow {
        margin-left: -2.2rem;
        max-width: 27ch;
        font-size: 0.78rem;
        margin-bottom: 1rem;
    }

    .about-content h2 span {
        font-size: clamp(2.35rem, 4.7vw, 3.7rem);
    }

    .about-content .description {
        transform: translateX(0.8rem);
        max-width: 44ch;
        font-size: 0.89rem;
    }

    .about-content .about-cta,
    .about-content button {
        transform: translateX(0.8rem);
    }

    /* Tablet cards: mini-desktop layout (2 columns + centered third card) */
    .testimonial-grid > [class*="col-"],
    .services-grid > [class*="col-"],
    .reviews-section .reviews-grid > [class*="col-"] {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
    }

    .testimonial-grid > [class*="col-"]:last-child,
    .services-grid > [class*="col-"]:last-child,
    .reviews-section .reviews-grid > [class*="col-"]:last-child {
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-card {
        padding: 0.7rem 0.85rem 0.95rem;
    }

    .testimonial-card img {
        width: 132px;
        height: 132px;
    }

    .testimonial-card p {
        font-size: 0.86rem;
        line-height: 1.4;
    }

    .services-grid {
        row-gap: 1.2rem;
    }

    .service-card {
        max-width: none;
    }

    .service-card h3 {
        font-size: 1.8rem;
        max-width: none;
        white-space: normal;
    }

    .service-card p {
        max-width: 34ch;
    }
}

@media (min-width: 992px) {
    nav ul {
        display: flex;
        align-items: center;
        gap: 1.35rem;
        margin-left: auto;
    }
}

/* Small desktop / large tablet polish pass. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-container {
        gap: 0.45rem;
    }

    .logo img {
        height: 34px;
    }

    nav ul {
        gap: 0.85rem;
    }

    .navbar-nav {
        flex-wrap: nowrap;
    }

    .navbar-nav .nav-link {
        font-size: 0.58rem;
        letter-spacing: 0.03em;
        white-space: nowrap;
    }

    header .social-icons {
        gap: 0.32rem;
        margin-left: 0.1rem;
    }

    header .social-icons a {
        font-size: 1rem;
    }

    .testimonials,
    .reviews-section {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .testimonial-grid,
    .reviews-section .reviews-grid {
        --bs-gutter-x: 1rem;
    }

    .testimonial-card {
        padding: 0.7rem 0.75rem 0.95rem;
    }

    .testimonial-card img {
        width: 150px;
        height: 150px;
        margin-bottom: 0.8rem;
    }

    .testimonial-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .testimonial-card .client-name {
        font-size: 0.88rem;
    }

    .about-section {
        padding-top: 2.6rem;
        padding-bottom: 2.4rem;
    }

    .about-image-left img {
        max-width: 250px;
    }

    .about-image-right img {
        max-width: 270px;
    }

    .about-content {
        max-width: 640px;
    }

    .about-content .eyebrow {
        font-size: 0.78rem;
        max-width: 28ch;
        margin-left: -2.8rem;
        margin-bottom: 1rem;
    }

    .about-content h2 span {
        font-size: clamp(2.9rem, 5.2vw, 4.2rem);
    }

    .about-content .description,
    .about-content .about-cta {
        transform: translateX(2.4rem);
    }
}

/* CONTACT PAGE */
.navbar-nav .nav-link.is-current,
header nav a.is-current {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 6px;
}

.contact-hero {
  background: #161719;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 610px;
  padding: 2.5rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f0f2f5;
}

.contact-hero h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.contact-hero h1 span {
  background: #f4f4f4;
  color: #17191d;
  box-shadow: 0.2em 0 0 #f4f4f4, -0.2em 0 0 #f4f4f4;
  margin-left: 0.16em;
}

.contact-hero p {
  margin-top: 0.8rem;
  font-size: 1.35rem;
}

.contact-main {
  background: #ececeb;
  padding: 4.3rem 2rem 3.7rem;
}

.contact-main-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: start;
}

.contact-tag {
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.contact-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 4.2vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.contact-lead {
  max-width: 40ch;
  color: #2a2d33;
  font-size: 1.1rem;
  line-height: 1.45;
  margin-bottom: 1.8rem;
}

.contact-items {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #15171a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-item h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
}

.contact-item p {
  margin: 0.2rem 0 0;
  font-size: 1.05rem;
  color: #1f2227;
}

.contact-form-card {
  background: #17191d;
  color: #eff2f5;
  padding: 2rem 1.6rem;
}

.contact-form-card form {
  display: grid;
  gap: 1.1rem;
}

.contact-form-card label {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 0;
  background: #f1f2f3;
  color: #14161a;
  padding: 0.65rem 0.75rem;
  font-size: 1.1rem;
}

.contact-form-card button {
  border: 0;
  background: var(--accent);
  color: #101215;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.55rem 1.55rem;
  justify-self: start;
}

.contact-form-card button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-form-notice {
  margin: 0.2rem 0 0;
  min-height: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-form-notice.is-pending {
  color: #cfd6df;
}

.contact-form-notice.is-success {
  color: #85e79b;
}

.contact-form-notice.is-error {
  color: #ff9b9b;
}

.contact-impact {
  background: #17191d;
  color: #f0f2f5;
  padding: 3rem 2rem;
}

.contact-impact-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.1rem;
  align-items: stretch;
}

.contact-impact-image {
  height: 100%;
}

.contact-impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.contact-tag-dark {
  color: #e7ebf0;
}

.contact-impact-content h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
}

.contact-impact-content p {
  margin: 0;
  max-width: 54ch;
  color: #d4d8de;
  font-size: 1rem;
  line-height: 1.45;
}

.contact-impact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.impact-stats {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
}

.impact-stats h3 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.9;
}

.impact-stats p {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0f2f5;
}

.contact-faq {
  background: #ececeb;
  padding: 3.6rem 2rem 4rem;
}

.contact-faq-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.contact-faq h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 5.2rem);
  line-height: 0.9;
}

.contact-faq p {
  margin: 0.8rem 0 1.7rem;
  font-size: 1.35rem;
}

.faq-list {
  border-top: 1px solid #17191d;
}

.faq-row {
  border-bottom: 1px solid #17191d;
  padding: 0.25rem 0;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  line-height: 1.08;
  font-weight: 700;
}

.faq-symbol {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0 0 1rem;
  color: #2b2f35;
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 70ch;
}

.faq-row.faq-first.is-open .faq-answer {
  max-height: 420px;
}

.faq-row.is-open .faq-answer {
  max-height: 220px;
}

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

@media (max-width: 980px) {
  .contact-main-inner,
  .contact-impact-inner {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    margin-top: 1rem;
  }
}

@media (max-width: 820px) {
  .contact-main,
  .contact-impact,
  .contact-faq {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-copy h2 {
    font-size: 2.7rem;
  }

  .contact-form-card label {
    font-size: 1.5rem;
  }

  .faq-row span {
    font-size: 1.35rem;
  }

  .contact-map iframe {
    height: 300px;
  }

  .contact-hero {
    min-height: 320px;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

  .contact-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .contact-hero p {
    font-size: 1.05rem;
    margin-top: 0.5rem;
  }
}

/* BOOK CONSULTATION PAGE */
.booking-hero {
  background: #161719;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 610px;
  padding: 2.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f1f3f6;
}

.booking-hero h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.booking-hero h1 span {
  background: #f4f4f4;
  color: #17191d;
  box-shadow: 0.2em 0 0 #f4f4f4, -0.2em 0 0 #f4f4f4;
  margin-left: 0.16em;
}

.booking-hero p {
  margin: 0.9rem 0 0;
  font-size: 1.25rem;
}

.booking-calendly {
  background: #ececeb;
  padding: 3.4rem 2rem 4.1rem;
}

.booking-calendly-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.booking-tag {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.booking-calendly h2 {
  margin: 0.6rem 0 0.5rem;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.booking-lead {
  margin: 0 0 1.4rem;
  max-width: 58ch;
  color: #2a2e34;
  font-size: 1rem;
  line-height: 1.45;
}

.booking-widget-wrap {
  background: #17191d;
  padding: 1rem;
}

.booking-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #666b72;
}

/* POLICY PAGES */
.policy-main {
  background: #ececeb;
  padding: 3.2rem 2rem 4rem;
  display: flex;
  justify-content: center;
}

.policy-inner {
  width: min(100%, 78ch);
  margin: 0;
  color: #20242b;
}

.policy-meta {
  margin: 0 0 1.1rem;
  font-size: 0.85rem;
  color: #5e636b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.policy-inner h2 {
  margin: 1.5rem 0 0.65rem;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.policy-inner p {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

.policy-inner a {
  color: #1b1f26;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.policy-inner a:hover {
  color: #000000;
}

@media (max-width: 820px) {
  .booking-calendly {
    padding: 2.4rem 1rem 3rem;
  }

  .booking-widget-wrap {
    padding: 0.5rem;
  }

  .booking-hero {
    min-height: 320px;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

  .booking-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .booking-hero p {
    font-size: 1.05rem;
    margin-top: 0.5rem;
  }

  .policy-main {
    padding: 2.2rem 1rem 2.8rem;
  }

  .policy-inner h2 {
    margin-top: 1.2rem;
    font-size: 1.1rem;
  }

  .policy-inner p {
    font-size: 0.95rem;
    line-height: 1.62;
    max-width: 100%;
  }
}
/* Google Reviews cards */
.review-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  height: 100%;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.review-name {
  font-weight: 600;
  margin: 0;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stars {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.review-text {
  margin: 10px 0 0 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.95;
}

/* show only a few lines by default */
.review-text.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  display: box;
  line-clamp: 2;

  overflow: hidden;
}
/* buttons */
.review-actions {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-more {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  opacity: 0.85;
  text-decoration: underline;
  font-size: 13px;
  cursor: pointer;
}

.review-more:hover { opacity: 1; }

.review-google-link {
  font-size: 13px;
  opacity: 0.75;
  text-decoration: underline;
  color: var(--lavender-strip);
}

.review-google-link:hover { opacity: 1; }

/* Visual identity: keep cards/modals square (no global reset). */
.service-card,
.testimonial-card,
.review-card,
.work-card,
.adv-card,
.contact-form-card,
.help-card,
.services-feature-wrap,
.services-feature-image img,
.whatsapp-modal__panel,
.whatsapp-modal__textarea,
.whatsapp-modal__presets button,
.whatsapp-modal__send {
  border-radius: 0 !important;
}

/* Keep quote carousel dots circular */
.carrousel-dots .dot {
  border-radius: 50% !important;
}

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

/* Labels */
.lang-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  transition: 0.2s ease;
}

.lang-label.active {
  color: var(--text-light);
}

/* Switch track */
.switch-track {
  width: 34px;
  height: 16px;
  background: #2a2d33;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  cursor: pointer;
  padding: 0;
}

/* Thumb */
.switch-thumb {
  width: 14px;
  height: 14px;
  background: var(--accent);
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.25s ease;
}

/* Active state (ES selected) */
.lang-switch.is-es .switch-thumb {
  transform: translateX(18px);
}

/* Optional hover */
.switch-track:hover .switch-thumb {
  background: #dde47b;
}

.bg-content {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  /* Si el acordeón está CERRADO por defecto: */
  max-height: 0; 
}

/* Esta clase se debe añadir mediante JS cuando hagas click */
.bg-item.active .bg-content {
  max-height: 1000px; /* Un valor lo suficientemente grande */
  padding-bottom: 20px; /* Espacio extra para que no respire apretado */
}

.bg-content ul {
  margin: 0;
  padding: 15px 20px; /* Ajusta el padding para que no se pegue a los bordes */
  list-style-type: disc;
}

.bg-content li {
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 0.95rem;
}