:root {
    --red: #d9141c;
    --red-dark: #9d0f15;
    --black: #0b0b0d;
    --black-2: #151518;
    --text: #111114;
    --muted: #6f7278;
    --soft: #f5f5f5;
    --white: #fff;
    --line: #e7e7e7;
    --dark-line: rgba(255, 255, 255, .12);
    --shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1200px, calc(100% - 32px)); margin-inline: auto; }

.mirror-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}
.mirror-topbar {
    background: var(--black);
    color: #d8d8d8;
    font-size: 13px;
}
.mirror-topbar__inner {
    min-height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.top-contact, .top-social { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.top-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e6e6e6;
    font-weight: 700;
}
.top-contact svg,
.top-social svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.top-social {
    gap: 10px;
}
.top-social a {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    color: #f1f1f1;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.top-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
}
.top-contact a:hover { color: var(--red); }
.mirror-nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.mirror-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 96px;
    font-weight: 900;
    text-transform: lowercase;
    line-height: 1.05;
}
.mirror-logo img { width: 82px; }
.mirror-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 800;
}
.mirror-menu a {
    position: relative;
    padding: 32px 0;
}
.mirror-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: .2s ease;
}
.mirror-menu a.active::after,
.mirror-menu a:hover::after { transform: scaleX(1); }
.mirror-add {
    background: var(--red);
    color: var(--white);
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(217, 20, 28, .28);
}
.mirror-add:hover { background: var(--red-dark); }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 4px;
    padding: 10px;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--black); }

.mirror-hero {
    min-height: calc(100vh - 134px);
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.mirror-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mirror-hero__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 22%, rgba(217, 20, 28, .5), transparent 24%),
        linear-gradient(90deg, rgba(5, 5, 6, .92), rgba(5, 5, 6, .62) 52%, rgba(5, 5, 6, .32)),
        linear-gradient(0deg, rgba(0, 0, 0, .58), transparent 46%);
}
.mirror-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background:
        linear-gradient(90deg, rgba(217, 20, 28, .82), rgba(157, 15, 21, .2) 34%, transparent 68%);
    clip-path: polygon(0 42%, 58% 72%, 100% 50%, 100% 100%, 0 100%);
    z-index: 1;
    opacity: .92;
}
.mirror-hero::after {
    content: "";
    position: absolute;
    right: 6vw;
    top: 15%;
    width: clamp(220px, 28vw, 460px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    box-shadow: inset 0 0 0 28px rgba(217, 20, 28, .08), 0 0 80px rgba(217, 20, 28, .22);
    z-index: 1;
}
.mirror-hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 0 70px;
}
.hero-copy { max-width: 760px; color: var(--white); }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hero-eyebrow::before {
    content: "";
    width: 54px;
    height: 2px;
    background: var(--red);
}
.hero-copy h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(46px, 7vw, 45px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 18px 48px rgba(0, 0, 0, .55);
}
.hero-copy p {
    margin: 24px 0 34px;
    max-width: 660px;
    color: #e3e3e3;
    font-size: 14px;
}
.homirx-search {
    width: min(1040px, 100%);
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
    border: 1px solid rgba(255, 255, 255, .28);
    transform: translateY(18px);
}

.listing-tabs button {
    border: 0;
    background: #f0f0f0;
    color: var(--text);
    border-radius: 4px 4px 0 0;
    padding: 12px 22px;
    font-weight: 900;
    cursor: pointer;
}
.listing-tabs button.active {
    background: var(--red);
    color: var(--white);
}

label span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.mirror-btn {
    min-height: 50px;
    border: 0;
    border-radius: 4px;
    padding: 13px 24px;
    font-weight: 900;
    cursor: pointer;
}

.mirror-btn:hover { background: var(--red-dark); }




.home-size-panel {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 30px 48px 34px;
    background: linear-gradient(135deg, #df201b, #b91411);
    color: #fff;
    border-radius: 10px;
    overflow: visible;
}

.home-size-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 0 42px;
    position: relative;
}

.home-size-card + .home-size-card {
    border-left: 1px solid rgba(255, 255, 255, .46);
}

.home-size-card__head h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.08;
    text-transform: uppercase;
    font-weight: 700;
}

.home-size-card__head p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.house-art {
    width: 100%;
    max-width: 255px;
    height: 112px;
    object-fit: contain;
    margin: 0px auto 0px;
}



.home-size-card__bottom {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 15px;
    align-items: center;
}

.home-size-card__bottom p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.people-art {
    width: 39px;
    height: 36px;
    object-fit: contain;
}


.mirror-categories,
.mirror-about,
.mirror-listing,
.mirror-locations,
.mirror-book,
.mirror-testimonials { padding: 95px 0; }
.mirror-categories,
.mirror-listing,
.mirror-testimonials { background: #f6f6f6; }
.section-kicker {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-title-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}
.section-title-row h2,
.about-copy h2,
.mirror-book h2,
.mirror-testimonials h2,
.contact-panel h2,
.page-title h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.06;
    font-weight: 900;
}
.section-title-row a { color: var(--red); font-weight: 900; }
.type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.type-card {
    min-height: 230px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 28px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.type-card span { color: var(--red); font-weight: 900; }
.type-card h3 { margin: 18px 0 8px; font-size: 22px; }
.type-card p { color: var(--muted); }
.type-card b { color: var(--red); }

.about-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}
.about-media {
    position: relative;
}



.about-tiktok-spinner {
    position: absolute;
    right: 4%;
    bottom: 7%;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--text);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
}

.about-tiktok-spinner__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
}

.about-tiktok-spinner__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-tiktok-spinner__text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: aboutSpinnerRotate 13s linear infinite;
}

.about-tiktok-spinner__text text {
    fill: black;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

#tiktokCirclePath {
    fill: black;
    color: black;
}

@keyframes aboutSpinnerRotate {
    to { transform: rotate(360deg); }
}

.about-media img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 8px;
}



.about-copy p { color: var(--muted); font-size: 17px; }
.mirror-list { padding: 0; list-style: none; margin: 24px 0; }
.mirror-list li {
    position: relative;
    margin: 12px 0;
    padding-left: 28px;
    font-weight: 800;
}
.mirror-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--red);
}
.about-stats {
    display: flex;
    gap: 34px;
    margin: 28px 0;
}
.about-stats strong {
    display: block;
    color: var(--red);
    font-size: 46px;
    line-height: 1;
}
.about-stats span { color: var(--muted); font-weight: 800; }

.listing-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}
.listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.listing-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}
.listing-card img {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.listing-body { padding: 16px; }
.listing-body h3 { margin: 0; font-size: 22px; line-height: 1.2; }
.listing-body p { color: var(--muted); margin: 0; }
.address { color: var(--text) !important; font-weight: 800; }
.mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 0;
}
.mini-features span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 900;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.listing-body a {
    padding: 8px 16px;
    background: var(--red);
    color: var(--white);
    border-radius: 4px;
    font-weight: 900;
    text-decoration: none;
    transition: background 0.2s ease;
}
.listing-body a:hover { background: var(--red-dark); }

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.location-grid article {
    position: relative;
    min-height: 360px;
    border-radius: 8px;
    overflow: hidden;
    padding: 28px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.location-grid img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.location-grid article::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .1));
    z-index: 1;
}
.location-grid span,
.location-grid h3,
.location-grid p {
    position: relative;
    z-index: 2;
}
.location-grid span { color: var(--red); font-weight: 900; }
.location-grid h3 { margin: 8px 0; font-size: 28px; }

.mirror-book {
    background: var(--black);
    color: var(--white);
}
.book-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 44px;
    align-items: center;
}
.book-card {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 0;
    background: var(--white);
    color: var(--text);
    border-radius: 8px;
    overflow: hidden;
}
.book-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}
.book-card div { padding: 34px; align-self: center; }
.book-card span { color: var(--red); font-weight: 900; }

.testimonial-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.review-strip {
    display: grid;
    gap: 16px;
}
.review-strip div {
    background: var(--white);
    padding: 26px;
    border-radius: 6px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .07);
}
.review-strip strong { display: block; font-size: 24px; }
.review-strip span { color: var(--muted); }
blockquote {
    margin: 22px 0 12px;
    font-size: clamp(25px, 3vw, 42px);
    line-height: 1.22;
    font-weight: 900;
}

.mirror-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 660px;
}
.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-panel {
    padding: clamp(38px, 6vw, 84px);
    background: var(--white);
}
.office-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}
.office-list article {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 22px;
}
.office-list h3 { margin: 0 0 8px; }
.office-list p { color: var(--muted); }
.office-list a { color: var(--red); font-weight: 900; }

.mirror-footer {
    background: white;
    color: black;
    padding: 70px 0 24px;
    border-top: 5px solid var(--red);
}
.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 34px;
}
.footer-main > div:first-child { text-align: center; }
.footer-main img { width: 150px; margin-bottom: 14px; }
.footer-main p { color: #666; }
.footer-main h3 { margin: 0 0 18px; color: black; }
.footer-main a {
    display: block;
    color: #333;
    margin: 10px 0;
}
.footer-main a:hover { color: var(--red); }
.footer-legal {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid #ddd;
    color: #666;
}





@media (max-width: 1120px) {
    .nav-toggle { display: block; margin-left: auto; }
    .mirror-add, .nav-cta { display: none; }
    .mirror-menu, .nav-menu {
        position: absolute;
        top: 134px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .nav-menu { top: 88px; }
    .mirror-menu.is-open, .nav-menu.is-open { display: flex; }
    .mirror-menu a, .nav-menu a { padding: 13px; }
    .mirror-menu a::after { display: none; }
    .homirx-search__body { grid-template-columns: repeat(2, 1fr); }
    .home-size-panel {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .home-size-card {
        min-height: 250px;
        padding: 24px 0;
    }
    .home-size-card:first-child {
        padding-top: 0;
    }
    .home-size-card + .home-size-card {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .46);
    }
    .type-grid, .listing-grid, .property-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout, .book-layout, .testimonial-layout, .mirror-contact, .split, .contact-grid { grid-template-columns: 1fr; }
    .footer-main, .footer-grid, .service-grid, .benefit-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .mirror-topbar { display: none; }
    .mirror-nav { min-height: 78px; }
    .mirror-logo, .brand { min-width: 0; }
    .mirror-logo span, .brand span { max-width: 120px; font-size: 14px; }
    .mirror-menu { top: 86px; }
    .mirror-hero { min-height: 780px; }
    .homirx-search__body, .homirx-more-panel, .type-grid, .listing-grid, .location-grid, .office-list, .property-grid, .footer-main, .footer-grid, .service-grid, .benefit-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .home-size-panel { padding: 26px 20px; }
    .home-size-card__bottom {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .house-art {
        height: 118px;
        margin: 20px auto;
    }

    .about-tiktok-spinner__icon {
        width: 44px;
        height: 44px;
    }
    .about-tiktok-spinner__text text {
        font-size: 14px;
    }
    .book-card { grid-template-columns: 1fr; }
    .top-contact { gap: 10px; }
}


.testimonials-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.container-testimonials {
justify-content: space-between;
margin: 0;
min-width: 100%;
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  gap: 60px;
  padding-right: 40px;
  padding-left: 0;
}

/* ========== IMAGEN IZQUIERDA PEGADA AL BORDE DEL NAVEGADOR ========== */
.testimonials-image {
  flex: 0 0 45%;
  position: relative;
  margin-left: 0;
  padding-left: 0;
  /* Calcula el ancho hasta el centro del viewport */
  width: calc(50vw - 30px);
  min-width: 45%;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 600px; /* ALTO FIJO */
  border-radius: 0 300px 300px 0;
  overflow: hidden;
}

.image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%);
  z-index: 1;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ========== CONTENIDO DERECHO ========== */
.testimonials-content {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  display: block;
  color: #bb0000;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a2b4a;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* ========== SLIDER ========== */
.testimonials-slider {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}

.testimonial-card {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #bb0000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f0f0;
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a2b4a;
}

.author-role {
  font-size: 14px;
  color: #888888;
  font-weight: 500;
}

.stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.star {
  color: #FFB800;
  font-size: 16px;
}

.quote-icon {
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555555;
  font-weight: 400;
}

/* ========== DOTS ========== */
.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.dot {
  width: 32px;
  height: 3px;
  background-color: #ddd;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #bb0000;
}

.dot:hover {
  background-color: #bb0000;
  opacity: 0.7;
}

/* ========== DECORACIÓN ========== */
.geometric-decoration {
  position: absolute;
  bottom: 40px;
  right: 40px;
  opacity: 0.3;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    gap: 40px;
    padding-right: 20px;
    padding-left: 0;
  }

  .testimonials-image {
    flex: none;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .image-wrapper {
    height: 600px; /* ALTO FIJO */
    border-radius: 0 200px 200px 0;
  }

  .testimonials-content {
    padding-left: 20px;
    width: 100%;
  }

  .testimonials-slider {
    flex-direction: column;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-right: 16px;
    padding-left: 0;
  }

  .testimonials-image {
    width: 100%;
    margin-left: 0;
  }

  .image-wrapper {
    height: 600px; /* ALTO FIJO */
    border-radius: 0 100px 100px 0;
  }

  .testimonials-content {
    padding-left: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 20px;
  }

/* Contacto */
.mirror-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: var(--text);
    text-align: center;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e7e7e7;
    border-radius: 8px;
    background: white;
    color: var(--text);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 87, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 18px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 87, 43, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 87, 43, 0.4);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 24px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text);
}

.contact-info strong {
    color: var(--red);
    font-weight: 700;
}

@media (max-width: 768px) {
    .mirror-contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-container,
    .contact-info {
        padding: 30px 20px;
    }
}

  .geometric-decoration {
    display: none;
  }
}