/* ============================================================
   RESET & BASE
   ============================================================ */

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

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.wrapper {
    position: relative;
    overflow-x: hidden; /* solo activo en mobile — se desactiva a partir de 1024px */
}

@media (min-width: 1024px) {
    .wrapper {
        overflow-x: visible;
    }
}

/* ============================================================
   NAVBAR
   ============================================================ */

.wrapper .navbar {
    display: flex;
    height: auto;
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    align-self: stretch;
}

.wrapper .logo-cityraiz {
    width: 140px;
    height: auto;
}

@media (min-width: 1280px) {
    .wrapper .navbar {
        height: 88.8px;
        padding: 12px 320px 0.8px 16px;
    }

    .wrapper .logo-cityraiz {
        width: 190px;
        height: 64px;
    }
}

/* ============================================================
   BANNER
   ============================================================ */

/* Mobile: imagen completa sin recorte para preservar los textos incrustados */
.wrapper .banner-principal {
    width: 100%;
}

.wrapper .banner-principal img {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop: imagen a tamaño fijo, el ancho completo la escala correctamente */
@media (min-width: 1024px) {
    .wrapper .banner-principal {
        min-height: 420px;
    }

    .wrapper .banner-principal img {
        height: 420px;
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 1280px) {
    .wrapper .banner-principal {
        min-height: 420px;
    }
}

/* ============================================================
   FORMULARIO DE BÚSQUEDA
   ============================================================ */

/* Mobile: en flujo normal, con leve overlap sobre el banner */
.wrapper .form-div {
    position: relative;
    z-index: 10;
    background: #fff;
    width: calc(100% - 32px);
    margin: -30px auto 0;
    height: auto;
    padding: 24px;
    gap: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.25);
}

.wrapper .form-div p {
    color: #364153;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.wrapper .cliente-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.wrapper .input-group {
    position: relative;
    display: block;
    width: 100%;
}

.wrapper .input-prefix {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #777;
    pointer-events: none;
}

.wrapper .form-div input {
    width: 100%;
    height: 50px;
    padding: 12px 16px 12px 48px;
    border-radius: 10px;
    border: 0.8px solid #D1D5DC;
    background: #f9fafb;
    color: #99a1af;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.wrapper .form-div input:focus {
    border: 0.8px solid #D1D5DC;
    outline: none;
}

.wrapper .form-div input::placeholder {
    color: #99a1af;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.wrapper .form-div button {
    display: flex;
    width: 100%;
    height: 50px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 10px;
    background: #d1d5dc;
    margin: 0;
    color: #fff;
    cursor: pointer;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 480px) {
    .wrapper .form-div p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (min-width: 768px) {
    .wrapper .form-div {
        width: calc(100% - 64px);
        padding: 28px;
        gap: 20px;
    }

    .wrapper .form-div p {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Tablet/laptop: formulario en fila, aún en flujo normal */
@media (min-width: 1024px) {
    .wrapper .form-div {
        width: calc(100% - 80px);
        max-width: 729px;
        margin: -35px auto 0;
        padding: 32px 32px 20px;
        gap: 24px;
        align-items: flex-start;
    }

    .wrapper .form-div p {
        font-size: 22px;
        line-height: 30px;
    }

    .wrapper .cliente-form {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .wrapper .input-group {
        flex: 1;
    }

    .wrapper .form-div input {
        width: 100%;
    }

    .wrapper .form-div button {
        width: auto;
        height: 50px;
        padding: 12.4px 23.225px 7.6px 24px;
        margin: 0 10px;
        flex-shrink: 0;
    }
}

/* Desktop: formulario absolutamente posicionado sobre el banner */
@media (min-width: 1280px) {
    .wrapper .form-div {
        position: absolute;
        top: 410px;
        left: 50%;
        transform: translateX(-50%);
        width: 729px;
        max-width: none;
        height: 209.575px;
        margin: 0;
        padding: 32px 32px 0 32px;
        gap: 32px;
        align-items: flex-start;
    }

    .wrapper .form-div p {
        font-size: 24px;
        line-height: 32px;
    }

    .wrapper .form-div input {
        width: 548px;
    }

    .wrapper .form-div button {
        width: auto;
    }
}

/* ============================================================
   UTILIDADES
   ============================================================ */

.wrapper .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-height: 680px;
    background-color: #fff;
}

.hidden {
    display: none !important;
}

/* ============================================================
   CITYRAÍZ
   ============================================================ */

.wrapper .content-cityraiz {
    display: flex;
    flex-direction: column;
    background: #f9fafb;
}

/* -- Info -- */
.content-cityraiz .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 20px auto;
    padding: 0 16px;
}

.content-cityraiz .info .acerca {
    display: flex;
    width: 100%;
    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    background-color: #fff;
    height: auto;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.25);
}

.content-cityraiz .info .acerca .acerca-logo img {
    width: 200px;
    height: auto;
}

.content-cityraiz .info .acerca .encontrado {
    color: #1e2939;
    text-align: center;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.content-cityraiz .info .acerca .contrato {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0;
}

.content-cityraiz .info .acerca .links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
}

.content-cityraiz .info .acerca .links .link1 {
    display: flex;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 25px;
    background: #ff9015;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.content-cityraiz .info .acerca .links .link2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 25px;
    background: #00c950;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.content-cityraiz .info .imagen {
    width: 100%;
    margin-top: 16px;
}

.content-cityraiz .info .imagen img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* -- Dudas -- */
.content-cityraiz .dudas-wrapper {
    background: linear-gradient(
        to right bottom,
        rgb(84, 86, 90),
        rgba(84, 86, 90, 0.867)
    );
    padding-top: 32px;
}

.content-cityraiz .dudas {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto 24px;
    text-align: center;
}

.content-cityraiz .dudas h2 {
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.content-cityraiz .dudas .subtitle {
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 12px;
}

.content-cityraiz .dudas .tabs {
    display: inline-flex;
    background: #fff;
    border-radius: 40px;
    padding: 5px;
    margin-top: 35px;
    margin-bottom: 32px;
}

.content-cityraiz .dudas .tab {
    border: none;
    background: transparent;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    color: #555;
    transition: all 0.3s ease;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.content-cityraiz .dudas .tab.active {
    background: #ff8c1a;
    color: white;
}

.content-cityraiz .dudas .tab-content {
    display: none;
    width: 100%;
}

.content-cityraiz .dudas .tab-content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.content-cityraiz .dudas .card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.content-cityraiz .dudas .card-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.content-cityraiz .dudas .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-cityraiz .dudas .badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #ff8c1a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.content-cityraiz .dudas .card-body {
    padding: 20px;
}

.content-cityraiz .dudas .card-body h3 {
    color: #1e2939;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.content-cityraiz .dudas .toggle-content {
    color: #ff9015;
    text-align: left;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    margin: 17px 0;
    float: left;
    width: 100%;
}

.content-cityraiz .dudas .toggle-content .icon {
    transition: transform 0.3s ease;
}

.content-cityraiz .dudas .toggle-content.active .icon svg {
    transform: rotate(180deg);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CityRaíz — 768px: cards en 2 columnas */
@media (min-width: 768px) {
    .content-cityraiz .info {
        padding: 0 24px;
    }

    .content-cityraiz .dudas {
        padding: 0 24px;
    }

    .content-cityraiz .dudas .tab-content.active {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-cityraiz .dudas .card {
        width: calc(50% - 10px);
        max-width: 357px;
    }
}

/* CityRaíz — 1024px: layout de fila, 3 columnas en cards */
@media (min-width: 1024px) {
    .content-cityraiz .info {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: calc(100% - 80px);
        max-width: 1120px;
        margin: 40px auto 30px;
        padding: 0;
    }

    .content-cityraiz .info .acerca {
        flex: 0 0 62%;
        border-radius: 20px 0 0 20px;
        height: auto;
        min-height: 350px;
        padding: 48px 32px;
        gap: 28px;
    }

    .content-cityraiz .info .imagen {
        flex: 0 0 38%;
        margin-top: 0;
        overflow: hidden;
    }

    .content-cityraiz .info .imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 20px 20px 0;
    }

    .content-cityraiz .info .acerca .acerca-logo img {
        width: 280px;
    }

    .content-cityraiz .info .acerca .encontrado {
        font-size: 24px;
        line-height: 32px;
    }

    .content-cityraiz .info .acerca .contrato {
        font-size: 18px;
        line-height: 28px;
    }

    .content-cityraiz .info .acerca .links {
        flex-direction: row;
        width: auto;
        gap: 0;
        align-items: flex-start;
    }

    .content-cityraiz .info .acerca .links .link1 {
        padding: 12px 48px;
        margin-right: 15px;
        width: auto;
    }

    .content-cityraiz .info .acerca .links .link2 {
        padding: 12px 48px;
        width: auto;
        justify-content: flex-start;
    }

    .content-cityraiz .dudas-wrapper {
        padding-top: 50px;
    }

    .content-cityraiz .dudas {
        width: calc(100% - 80px);
        max-width: 1120px;
        padding: 0;
        margin: 0 auto 28px;
    }

    .content-cityraiz .dudas h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .content-cityraiz .dudas .subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .content-cityraiz .dudas .tabs {
        margin-bottom: 40px;
    }

    .content-cityraiz .dudas .tab {
        padding: 12px 28px;
        font-size: 16px;
    }

    .content-cityraiz .dudas .tab-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .content-cityraiz .dudas .tab-content.active {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
        gap: 25px;
    }

    .content-cityraiz .dudas .card {
        width: calc(33.333% - 17px);
        max-width: 357px;
    }

    .content-cityraiz .dudas .card-img {
        width: 101%;
    }

    .content-cityraiz .dudas .card-body h3 {
        font-size: 20px;
        line-height: 28px;
    }
}

/* CityRaíz — 1280px: diseño desktop original */
@media (min-width: 1280px) {
    .content-cityraiz .info {
        flex-direction: row;
        justify-content: flex-start;
        width: 1116px;
        max-width: none;
        margin: 190px auto 30px;
        padding: 0;
        align-items: flex-start;
    }

    .content-cityraiz .info .acerca {
        flex: 0 0 606px;
        width: 606px;
        border-radius: 20px 0 0 20px;
        padding: 48px 0;
        gap: 32px;
        height: 404px;
        min-height: 0;
    }

    .content-cityraiz .info .imagen {
        flex: 0 0 510px;
        width: 510px;
        height: 404px;
        margin-top: 0;
        overflow: hidden;
    }

    .content-cityraiz .info .imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 20px 20px 0;
    }

    .content-cityraiz .info .acerca .acerca-logo img {
        width: 355px;
        height: 120px;
    }

    .content-cityraiz .info .acerca .contrato {
        font-size: 18px;
        line-height: 28px;
        margin-top: -25px;
    }

    .content-cityraiz .dudas-wrapper {
        padding-top: 65px;
    }

    .content-cityraiz .dudas {
        width: 1120px;
        max-width: none;
        margin: 0 auto 30px;
    }

    .content-cityraiz .dudas h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .content-cityraiz .dudas .subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .content-cityraiz .dudas .tabs {
        margin-bottom: 50px;
    }

    .content-cityraiz .dudas .tab {
        padding: 12px 30px;
    }

    .content-cityraiz .dudas .tab-content.active {
        gap: 25px;
    }

    .content-cityraiz .dudas .card {
        width: 357px;
        max-width: none;
    }
}

/* ============================================================
   VILLACRUZ
   ============================================================ */

.wrapper .content-villacruz {
    display: flex;
    flex-direction: column;
    background: #f9fafb;
}

/* -- Info -- */
.content-villacruz .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 20px auto;
    padding: 0 16px;
}

.content-villacruz .info .acerca {
    display: flex;
    width: 100%;
    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    background-color: #fff;
    height: auto;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.25);
}

.content-villacruz .info .acerca .acerca-logo img {
    width: 140px;
    height: auto;
}

.content-villacruz .info .acerca .encontrado {
    color: #039cd8;
    text-align: center;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-top: 0;
}

.content-villacruz .info .acerca .contrato {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0;
}

.content-villacruz .info .acerca .telefono {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.content-villacruz .info .acerca .direccion {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0;
}

.content-villacruz .info .acerca .links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
}

.content-villacruz .info .acerca .links .link1 {
    display: flex;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 25px;
    background: #039cd8;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.content-villacruz .info .acerca .links .link2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 25px;
    background: #00c950;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.content-villacruz .info .imagen {
    width: 100%;
    margin-top: 16px;
}

.content-villacruz .info .imagen img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* -- Dudas -- */
.content-villacruz .dudas-wrapper {
    background: linear-gradient(
        135deg,
        #68d4ff 0%,
        rgba(104, 212, 255, 0.87) 100%
    );
    padding-top: 32px;
}

.content-villacruz .dudas {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto 24px;
    text-align: center;
}

.content-villacruz .dudas h2 {
    color: #1e2939;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.content-villacruz .dudas .subtitle {
    color: #364153;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 12px;
}

.content-villacruz .dudas .tabs {
    display: inline-flex;
    background: #fff;
    border-radius: 40px;
    padding: 5px;
    margin-top: 35px;
    margin-bottom: 32px;
}

.content-villacruz .dudas .tab {
    border: none;
    background: transparent;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    color: #555;
    transition: all 0.3s ease;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.content-villacruz .dudas .tab.active {
    background: #039cd8;
    color: white;
}

.content-villacruz .dudas .tab-content {
    display: none;
    width: 100%;
}

.content-villacruz .dudas .tab-content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.content-villacruz .dudas .card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.content-villacruz .dudas .card-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.content-villacruz .dudas .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-villacruz .dudas .badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #039cd8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.content-villacruz .dudas .card-body {
    padding: 20px;
}

.content-villacruz .dudas .card-body h3 {
    color: #1e2939;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.content-villacruz .dudas .toggle-content {
    color: #039cd8;
    text-align: left;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    margin: 17px 0;
    float: left;
    width: 100%;
}

.content-villacruz .dudas .toggle-content .icon {
    transition: transform 0.3s ease;
}

.content-villacruz .dudas .toggle-content.active .icon svg {
    transform: rotate(180deg);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* VillaCruz — 768px */
@media (min-width: 768px) {
    .content-villacruz .info {
        padding: 0 24px;
    }

    .content-villacruz .dudas {
        padding: 0 24px;
    }

    .content-villacruz .dudas .tab-content.active {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-villacruz .dudas .card {
        width: calc(50% - 10px);
        max-width: 357px;
    }
}

/* VillaCruz — 1024px */
@media (min-width: 1024px) {
    .content-villacruz .info {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: calc(100% - 80px);
        max-width: 1120px;
        margin: 40px auto 30px;
        padding: 0;
    }

    .content-villacruz .info .acerca {
        flex: 0 0 62%;
        border-radius: 20px 0 0 20px;
        height: auto;
        min-height: 420px;
        padding: 48px 32px;
        gap: 28px;
    }

    .content-villacruz .info .imagen {
        flex: 0 0 38%;
        margin-top: 0;
        overflow: hidden;
    }

    .content-villacruz .info .imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 20px 20px 0;
    }

    .content-villacruz .info .acerca .acerca-logo img {
        width: 140px;
    }

    .content-villacruz .info .acerca .encontrado {
        font-size: 24px;
        line-height: 32px;
    }

    .content-villacruz .info .acerca .contrato {
        font-size: 18px;
        line-height: 28px;
    }

    .content-villacruz .info .acerca .links {
        flex-direction: row;
        width: auto;
        gap: 0;
        align-items: flex-start;
    }

    .content-villacruz .info .acerca .links .link1 {
        padding: 12px 48px;
        margin-right: 15px;
        width: auto;
    }

    .content-villacruz .info .acerca .links .link2 {
        padding: 12px 48px;
        width: auto;
        justify-content: flex-start;
    }

    .content-villacruz .dudas-wrapper {
        padding-top: 50px;
    }

    .content-villacruz .dudas {
        width: calc(100% - 80px);
        max-width: 1120px;
        padding: 0;
        margin: 0 auto 28px;
    }

    .content-villacruz .dudas h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .content-villacruz .dudas .subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .content-villacruz .dudas .tabs {
        margin-bottom: 40px;
    }

    .content-villacruz .dudas .tab {
        padding: 12px 28px;
        font-size: 16px;
    }

    .content-villacruz .dudas .tab-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .content-villacruz .dudas .tab-content.active {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
        gap: 25px;
    }

    .content-villacruz .dudas .card {
        width: calc(33.333% - 17px);
        max-width: 357px;
    }

    .content-villacruz .dudas .card-img {
        width: 101%;
    }

    .content-villacruz .dudas .card-body h3 {
        font-size: 20px;
        line-height: 28px;
    }
}

/* VillaCruz — 1280px */
@media (min-width: 1280px) {
    .content-villacruz .info {
        flex-direction: row;
        justify-content: flex-start;
        width: 1116px;
        max-width: none;
        margin: 190px auto 30px;
        padding: 0;
        align-items: flex-start;
    }

    .content-villacruz .info .acerca {
        flex: 0 0 606px;
        width: 606px;
        border-radius: 20px 0 0 20px;
        padding: 48px 0;
        gap: 32px;
        height: 496px;
        min-height: 0;
    }

    .content-villacruz .info .imagen {
        flex: 0 0 510px;
        width: 510px;
        height: 496px;
        margin-top: 0;
        overflow: hidden;
    }

    .content-villacruz .info .imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 20px 20px 0;
    }

    .content-villacruz .info .acerca .acerca-logo img {
        width: 158px;
    }

    .content-villacruz .info .acerca .encontrado {
        font-size: 24px;
        line-height: 32px;
        margin-top: -25px;
    }

    .content-villacruz .info .acerca .contrato {
        font-size: 18px;
        line-height: 28px;
        margin-top: -25px;
    }

    .content-villacruz .info .acerca .direccion {
        margin-top: -25px;
    }

    .content-villacruz .dudas-wrapper {
        padding-top: 65px;
    }

    .content-villacruz .dudas {
        width: 1120px;
        max-width: none;
        margin: 0 auto 30px;
    }

    .content-villacruz .dudas h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .content-villacruz .dudas .subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .content-villacruz .dudas .tabs {
        margin-bottom: 50px;
    }

    .content-villacruz .dudas .tab {
        padding: 12px 30px;
    }

    .content-villacruz .dudas .tab-content.active {
        gap: 25px;
    }

    .content-villacruz .dudas .card {
        width: 357px;
        max-width: none;
    }
}

/* ============================================================
   LIVIN
   ============================================================ */

.wrapper .content-livin {
    display: flex;
    flex-direction: column;
    background: #f9fafb;
}

/* -- Info -- */
.content-livin .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 20px auto;
    padding: 0 16px;
}

.content-livin .info .acerca {
    display: flex;
    width: 100%;
    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    background-color: #fff;
    height: auto;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.25);
}

.content-livin .info .acerca .acerca-logo img {
    width: 140px;
    height: auto;
}

.content-livin .info .acerca .encontrado {
    color: #333d47;
    text-align: center;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-top: 0;
}

.content-livin .info .acerca .contrato {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0;
}

.content-livin .info .acerca .telefono {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.content-livin .info .acerca .direccion {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0;
}

.content-livin .info .acerca .links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
}

.content-livin .info .acerca .links .link1 {
    display: flex;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 25px;
    background: #cbdc00;
    color: #333d47;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.content-livin .info .acerca .links .link2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 25px;
    background: #333d47;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.content-livin .info .imagen {
    width: 100%;
    margin-top: 16px;
}

.content-livin .info .imagen img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* -- Dudas -- */
.content-livin .dudas-wrapper {
    background: linear-gradient(
        135deg,
        #c8d900 0%,
        rgba(200, 217, 0, 0.87) 100%
    );
    padding-top: 32px;
}

.content-livin .dudas {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto 24px;
    text-align: center;
}

.content-livin .dudas h2 {
    color: #1e2939;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.content-livin .dudas .subtitle {
    color: #364153;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 12px;
}

.content-livin .dudas .tabs {
    display: inline-flex;
    background: #fff;
    border-radius: 40px;
    padding: 5px;
    margin-top: 35px;
    margin-bottom: 32px;
}

.content-livin .dudas .tab {
    border: none;
    background: transparent;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    color: #555;
    transition: all 0.3s ease;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.content-livin .dudas .tab.active {
    background: #c8d900;
    color: white;
}

.content-livin .dudas .tab-content {
    display: none;
    width: 100%;
}

.content-livin .dudas .tab-content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.content-livin .dudas .card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.content-livin .dudas .card-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.content-livin .dudas .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-livin .dudas .badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #c8d900;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.content-livin .dudas .card-body {
    padding: 20px;
}

.content-livin .dudas .card-body h3 {
    color: #1e2939;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.content-livin .dudas .toggle-content {
    color: #c8d900;
    text-align: left;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    margin: 17px 0;
    float: left;
    width: 100%;
}

.content-livin .dudas .toggle-content .icon {
    transition: transform 0.3s ease;
}

.content-livin .dudas .toggle-content.active .icon svg {
    transform: rotate(180deg);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Livin — 768px */
@media (min-width: 768px) {
    .content-livin .info {
        padding: 0 24px;
    }

    .content-livin .dudas {
        padding: 0 24px;
    }

    .content-livin .dudas .tab-content.active {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-livin .dudas .card {
        width: calc(50% - 10px);
        max-width: 357px;
    }
}

/* Livin — 1024px */
@media (min-width: 1024px) {
    .content-livin .info {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: calc(100% - 80px);
        max-width: 1120px;
        margin: 40px auto 30px;
        padding: 0;
    }

    .content-livin .info .acerca {
        flex: 0 0 62%;
        border-radius: 20px 0 0 20px;
        height: auto;
        min-height: 420px;
        padding: 48px 32px;
        gap: 28px;
    }

    .content-livin .info .imagen {
        flex: 0 0 38%;
        margin-top: 0;
        overflow: hidden;
    }

    .content-livin .info .imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 20px 20px 0;
    }

    .content-livin .info .acerca .acerca-logo img {
        width: 170px;
    }

    .content-livin .info .acerca .encontrado {
        font-size: 24px;
        line-height: 32px;
    }

    .content-livin .info .acerca .contrato {
        font-size: 18px;
        line-height: 28px;
    }

    .content-livin .info .acerca .links {
        flex-direction: row;
        width: auto;
        gap: 0;
        align-items: flex-start;
    }

    .content-livin .info .acerca .links .link1 {
        padding: 12px 48px;
        margin-right: 15px;
        width: auto;
    }

    .content-livin .info .acerca .links .link2 {
        padding: 12px 48px;
        width: auto;
        justify-content: flex-start;
    }

    .content-livin .dudas-wrapper {
        padding-top: 50px;
    }

    .content-livin .dudas {
        width: calc(100% - 80px);
        max-width: 1120px;
        padding: 0;
        margin: 0 auto 28px;
    }

    .content-livin .dudas h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .content-livin .dudas .subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .content-livin .dudas .tabs {
        margin-bottom: 40px;
    }

    .content-livin .dudas .tab {
        padding: 12px 28px;
        font-size: 16px;
    }

    .content-livin .dudas .tab-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .content-livin .dudas .tab-content.active {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
        gap: 25px;
    }

    .content-livin .dudas .card {
        width: calc(33.333% - 17px);
        max-width: 357px;
    }

    .content-livin .dudas .card-img {
        width: 101%;
    }

    .content-livin .dudas .card-body h3 {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Livin — 1280px */
@media (min-width: 1280px) {
    .content-livin .info {
        flex-direction: row;
        justify-content: flex-start;
        width: 1116px;
        max-width: none;
        margin: 190px auto 30px;
        padding: 0;
        align-items: flex-start;
    }

    .content-livin .info .acerca {
        flex: 0 0 606px;
        width: 606px;
        border-radius: 20px 0 0 20px;
        padding: 48px 0;
        gap: 32px;
        height: 496px;
        min-height: 0;
    }

    .content-livin .info .imagen {
        flex: 0 0 510px;
        width: 510px;
        height: 496px;
        margin-top: 0;
        overflow: hidden;
    }

    .content-livin .info .imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 20px 20px 0;
    }

    .content-livin .info .acerca .acerca-logo img {
        width: 200px;
    }

    .content-livin .info .acerca .encontrado {
        font-size: 24px;
        line-height: 32px;
        margin-top: -25px;
    }

    .content-livin .info .acerca .contrato {
        font-size: 18px;
        line-height: 28px;
        margin-top: -25px;
    }

    .content-livin .info .acerca .direccion {
        margin-top: -25px;
    }

    .content-livin .dudas-wrapper {
        padding-top: 65px;
    }

    .content-livin .dudas {
        width: 1120px;
        max-width: none;
        margin: 0 auto 30px;
    }

    .content-livin .dudas h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .content-livin .dudas .subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .content-livin .dudas .tabs {
        margin-bottom: 50px;
    }

    .content-livin .dudas .tab {
        padding: 12px 30px;
    }

    .content-livin .dudas .tab-content.active {
        gap: 25px;
    }

    .content-livin .dudas .card {
        width: 357px;
        max-width: none;
    }
}

/* ============================================================
   LA ESTRELLA
   ============================================================ */

.wrapper .content-estrella {
    display: flex;
    flex-direction: column;
    background: #f9fafb;
}

/* -- Info -- */
.content-estrella .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 20px auto;
    padding: 0 16px;
}

.content-estrella .info .acerca {
    display: flex;
    width: 100%;
    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    background-color: #fff;
    height: auto;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.25);
}

.content-estrella .info .acerca .acerca-logo img {
    width: 160px;
    height: auto;
}

.content-estrella .info .acerca .encontrado {
    color: #42d0ae;
    text-align: center;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-top: 0;
}

.content-estrella .info .acerca .contrato {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0;
}

.content-estrella .info .acerca .telefono {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
}

.content-estrella .info .acerca .direccion {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0;
    width: 100%;
}

.content-estrella .info .acerca .links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
}

.content-estrella .info .acerca .links .link1 {
    display: flex;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 25px;
    background: #42d0ae;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.content-estrella .info .acerca .links .link2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 25px;
    background: #00c950;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.content-estrella .info .imagen {
    width: 100%;
    margin-top: 16px;
}

.content-estrella .info .imagen img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* -- Dudas -- */
.content-estrella .dudas-wrapper {
    background: linear-gradient(
        135deg,
        #42d0ae 0%,
        rgba(66, 208, 174, 0.87) 100%
    );
    padding-top: 32px;
}

.content-estrella .dudas {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto 24px;
    text-align: center;
}

.content-estrella .dudas h2 {
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.content-estrella .dudas .subtitle {
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 12px;
}

.content-estrella .dudas .tabs {
    display: inline-flex;
    background: #fff;
    border-radius: 40px;
    padding: 5px;
    margin-top: 35px;
    margin-bottom: 32px;
}

.content-estrella .dudas .tab {
    border: none;
    background: transparent;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    color: #555;
    transition: all 0.3s ease;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.content-estrella .dudas .tab.active {
    background: #42d0ae;
    color: white;
}

.content-estrella .dudas .tab-content {
    display: none;
    width: 100%;
}

.content-estrella .dudas .tab-content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.content-estrella .dudas .card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.content-estrella .dudas .card-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.content-estrella .dudas .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-estrella .dudas .badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #c8d900;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.content-estrella .dudas .card-body {
    padding: 20px;
}

.content-estrella .dudas .card-body h3 {
    color: #1e2939;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.content-estrella .dudas .toggle-content {
    color: #42d0ae;
    text-align: left;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    margin: 17px 0;
    float: left;
    width: 100%;
}

.content-estrella .dudas .toggle-content .icon {
    transition: transform 0.3s ease;
}

.content-estrella .dudas .toggle-content.active .icon svg {
    transform: rotate(180deg);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* La Estrella — 768px */
@media (min-width: 768px) {
    .content-estrella .info {
        padding: 0 24px;
    }

    .content-estrella .dudas {
        padding: 0 24px;
    }

    .content-estrella .dudas .tab-content.active {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-estrella .dudas .card {
        width: calc(50% - 10px);
        max-width: 357px;
    }
}

/* La Estrella — 1024px */
@media (min-width: 1024px) {
    .content-estrella .info {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: calc(100% - 80px);
        max-width: 1120px;
        margin: 40px auto 30px;
        padding: 0;
    }

    .content-estrella .info .acerca {
        flex: 0 0 62%;
        border-radius: 20px 0 0 20px;
        height: auto;
        min-height: 460px;
        padding: 40px 32px;
        gap: 24px;
    }

    .content-estrella .info .imagen {
        flex: 0 0 38%;
        margin-top: 0;
        overflow: hidden;
    }

    .content-estrella .info .imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 20px 20px 0;
    }

    .content-estrella .info .acerca .acerca-logo img {
        width: 200px;
    }

    .content-estrella .info .acerca .encontrado {
        font-size: 24px;
        line-height: 32px;
    }

    .content-estrella .info .acerca .contrato {
        font-size: 18px;
        line-height: 28px;
    }

    .content-estrella .info .acerca .telefono,
    .content-estrella .info .acerca .direccion {
        text-align: left;
        width: 80%;
    }

    .content-estrella .info .acerca .links {
        flex-direction: row;
        width: auto;
        gap: 0;
        align-items: flex-start;
    }

    .content-estrella .info .acerca .links .link1 {
        padding: 12px 48px;
        margin-right: 15px;
        width: auto;
    }

    .content-estrella .info .acerca .links .link2 {
        padding: 12px 48px;
        width: auto;
        justify-content: flex-start;
    }

    .content-estrella .dudas-wrapper {
        padding-top: 50px;
    }

    .content-estrella .dudas {
        width: calc(100% - 80px);
        max-width: 1120px;
        padding: 0;
        margin: 0 auto 28px;
    }

    .content-estrella .dudas h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .content-estrella .dudas .subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .content-estrella .dudas .tabs {
        margin-bottom: 40px;
    }

    .content-estrella .dudas .tab {
        padding: 12px 28px;
        font-size: 16px;
    }

    .content-estrella .dudas .tab-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .content-estrella .dudas .tab-content.active {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
        gap: 25px;
    }

    .content-estrella .dudas .card {
        width: calc(33.333% - 17px);
        max-width: 357px;
    }

    .content-estrella .dudas .card-img {
        width: 101%;
    }

    .content-estrella .dudas .card-body h3 {
        font-size: 20px;
        line-height: 28px;
    }
}

/* La Estrella — 1280px */
@media (min-width: 1280px) {
    .content-estrella .info {
        flex-direction: row;
        justify-content: flex-start;
        width: 1116px;
        max-width: none;
        margin: 190px auto 30px;
        padding: 0;
        align-items: flex-start;
    }

    .content-estrella .info .acerca {
        flex: 0 0 606px;
        width: 606px;
        border-radius: 20px 0 0 20px;
        padding: 0 0 48px 0;
        gap: 32px;
        height: 556px;
        min-height: 0;
    }

    .content-estrella .info .imagen {
        flex: 0 0 510px;
        width: 510px;
        height: 556px;
        margin-top: 0;
        overflow: hidden;
    }

    .content-estrella .info .imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 20px 20px 0;
    }

    .content-estrella .info .acerca .acerca-logo img {
        width: 252px;
    }

    .content-estrella .info .acerca .encontrado {
        font-size: 24px;
        line-height: 32px;
        margin-top: -75px;
    }

    .content-estrella .info .acerca .contrato {
        font-size: 18px;
        line-height: 28px;
        margin-top: -25px;
    }

    .content-estrella .info .acerca .telefono {
        width: 75%;
        text-align: left;
    }

    .content-estrella .info .acerca .direccion {
        margin-top: -25px;
        width: 75%;
        text-align: left;
    }

    .content-estrella .dudas-wrapper {
        padding-top: 65px;
    }

    .content-estrella .dudas {
        width: 1120px;
        max-width: none;
        margin: 0 auto 30px;
    }

    .content-estrella .dudas h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .content-estrella .dudas .subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .content-estrella .dudas .tabs {
        margin-bottom: 50px;
    }

    .content-estrella .dudas .tab {
        padding: 12px 30px;
    }

    .content-estrella .dudas .tab-content.active {
        gap: 25px;
    }

    .content-estrella .dudas .card {
        width: 357px;
        max-width: none;
    }
}

/* ============================================================
   ACCORDION
   ============================================================ */

.accordion {
    display: none;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    float: left;
    width: 100%;
}

.accordion.active {
    display: block;
}

.accordion-item {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    width: 100%;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: #364153;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.accordion-body {
    display: none;
    margin-top: 8px;
    margin-left: 8px;
    color: #4a5565;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .icon {
    transform: rotate(180deg);
}

.icon {
    transition: transform 0.2s ease;
}

/* ============================================================
   OVERLAY & MODAL
   ============================================================ */

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 24px;
    width: 100%;
    max-width: 448px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(24px) scale(0.97);
    transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.25s ease;
    opacity: 0;
}

.overlay.active .modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-title {
    color: #1e2939;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 12px;
}

.modal-subtitle {
    color: #4a5565;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 100px;
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.15s,
        box-shadow 0.15s,
        filter 0.15s;
    margin-bottom: 10px;
}

.btn-contact:active {
    transform: scale(0.97);
    filter: brightness(0.95);
}

.btn-whatsapp {
    background: #00C950;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.btn-whatsapp:hover {
    background: #19ce61;
}

.btn-tel {
    background: #364153;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.btn-tel:hover {
    background: #4a5464;
}

.btn-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-close {
    display: flex;
    padding: 12.4px 0 11.6px 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    margin-top: 30px;
    color: #364153;
}

.btn-close:hover {
    background: #ebe6e7;
}

@media (min-width: 1280px) {
    .modal-title {
        font-size: 24px;
        line-height: 32px;
    }

    .modal-subtitle {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 28px;
    }
}
