/* ===== VARIABLES ===== */
:root {
    --purple: #9c2db0;
    --purple-dark: #7a2290;
    --teal: #3dbcb1;
    --teal-dark: #2fa89e;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --text-dark: #333333;
}

/* ===== BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
    position: relative;
}

body.bodyve::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/common/fondo.png');
    background-repeat: repeat;
    background-size: 1980px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/* ===== UTILITIES ===== */
.text-purple {
    color: var(--purple);
}

.text-teal {
    color: var(--teal);
}

.text-purple-bold {
    color: var(--purple);
    font-weight: 800;
}

.italic {
    font-style: italic;
}

.text-muted-sm {
    font-size: 19px;
    color: var(--purple);
}

.text-justify {
    text-align: justify;
}

/* ===== NAVBAR ===== */
.navbar-top {
    background-color: var(--purple);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--purple);
    color: var(--white);
    font-size: 16px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--purple-dark);
    color: var(--white);
}

/* ===== LOGOS ===== */
.logo-sm {
    width: 120px;
}

.logo-md {
    width: 150px;
}

.logo-sm-inline {
    width: 80px;
    vertical-align: middle;
    margin-right: 10px;
}

.logo-footer {
    width: 100px;
    margin-bottom: 10px;
}

/* ===== HEART BADGE ===== */
.heart-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--teal);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.heart-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--teal);
}

.heart-icon {
    color: var(--purple);
    font-size: 14px;
}

/* ===== BUTTONS ===== */
.btn-purple-solid {
    display: inline-block;
    background-color: var(--purple);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-purple-solid:hover {
    background-color: var(--purple-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(156, 45, 176, 0.4);
}

.btn-teal-solid {
    display: inline-block;
    background-color: var(--teal);
    color: var(--white);
    font-weight: 600;
    font-size: 23px;
    padding: 14px 14px;
    border-radius: 15px;
    transition: all 0.3s;
}

.btn-teal-solid:hover {
    background-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 188, 177, 0.4);
}

.btn-cta-contact {
    display: inline-block;
    background-color: var(--teal);
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    padding: 14px 50px;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-cta-contact:hover {
    background-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 188, 177, 0.5);
}

/* ===== BADGES ===== */
.badge-purple {
    display: inline-block;
    background-color: var(--purple);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 24px;
    border-radius: 6px;
}

.badge-purple-sm {
    display: inline-block;
    background-color: var(--purple);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 6px 60px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* ===== SECTION: HERO ===== */
.section-hero {
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SECTION: QUIENES SOMOS ===== */
.section-quienes {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.quienes-text-col {
    position: relative;
    z-index: 2;
}

.quienes-description p {
    background-color: var(--purple);
    color: var(--white);
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 19px;
    line-height: 1.6;
    font-weight: 500;
    margin-right: 50px;
}

.quienes-description p .text-bottom {
    margin-right: 80px;
}

.quienes-img-col {
    position: relative;
    z-index: 2;
}

.section-img-wrapper {
    text-align: center;
}

.section-img {
    max-width: 100%;
    width: auto;
}

/* ===== SECTION: CREDITO ===== */
.section-credito {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.credito-title {
    margin-bottom: 10px;
}

.credito-overlap {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
}

.credito-img-area {
    grid-column: 1 / 2;
    grid-row: 1;
    z-index: 1;
}

.credito-photo {
    width: 900px;
}

.credito-text-area {
    grid-column: 1 / 3;
    grid-row: 1;
    z-index: 2;
    padding-left: 55%;
}

.credito-description {
    background-color: var(--teal);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    margin-left:-120px;
    margin-top:-150px;
    margin-right: 220px;
}

/* ===== SECTION: PROXIMO LOGRO ===== */
.section-logro {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.logro-text-col {
    position: relative;
    z-index: 2;
}

.logro-header {
    margin-bottom: 10px;
}

.logro-img-col {
    position: relative;
    z-index: 2;
}

.requisitos-box {
    margin-bottom: 25px;
}

.requisitos-list {
    list-style: disc;
    padding-left: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.requisitos-list li {
    margin-bottom: 5px;
}

/* ===== SECTION: BENEFICIOS ===== */
.section-beneficios {
    position: relative;
    z-index: 1;
    padding: 80px 0 40px;
}

.beneficios-header {
    margin-bottom: 50px;
    z-index: 2;
}

.heart-badge-beneficios {
    text-align: center;
    margin-bottom: 20px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px 0px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.beneficio-item {
    text-align: center;
}

.beneficio-num-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.beneficio-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
}

.beneficio-num-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.beneficio-label {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}


.beneficios-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.beneficios-footer-left {
    flex: 0 0 auto;
}

.beneficios-footer-right {
    flex: 1;
    text-align: right;
}

.ciudades-img {
    max-width: 100%;
    width: 500px;
}

/* ===== SECTION: TESTIMONIOS ===== */
.section-testimonios {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.testimonios-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.testimonio-featured {
    flex: 0 1 auto;
    max-width: 600px;
}

.testimonio-logo-side {
    flex: 0 0 auto;
}

.testimonio-img {
    width: 100%;
    max-width: 600px;
}

.testimonios-secondary {
    display: flex;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.testimonio-card {
    flex: 0 1 500px;
}

/* ===== SECTION: CTA ===== */
.section-cta {
    position: relative;
    z-index: 1;
    padding: 0;
}

.cta-wave-top {
    width: 100%;
    line-height: 0;
}

.cta-wave-top svg {
    width: 100%;
    height: 80px;
}

.cta-content {
    background-color: var(--purple);
    padding: 40px 0 50px;
}

.cta-title {
    font-size: 40px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-title strong {
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 25px;
}

/* ===== FOOTER ===== */
.footer-bottom {
    background-color: var(--purple-dark);
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.boot {
  position: fixed;
  bottom: 15px;
  right: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-title .text-teal {
        font-size: 2.4rem;
    }
    .credito-description{
        margin: 0 auto;
    }

    .section-title {
        font-size: 40px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    body::before {
        background-size: 800px;
        background-position: left center;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-quienes,
    .section-credito,
    .section-logro {
        padding: 50px 0;
    }

    .credito-overlap {
        grid-template-columns: 1fr;
    }

    .credito-img-area {
        grid-column: 1;
        text-align: center;
    }

    .credito-photo {
        max-width: 350px;
    }

    .credito-text-area {
        grid-column: 1;
        grid-row: 2;
        padding-left: 0;
        text-align: center;
    }

    .credito-title {
        text-align: center;
    }

    .credito-description {
        margin: 0 auto;
        margin-top: 20px;
        max-width: 400px;
    }   

    .quienes-text-col,
    .credito-text-col,
    .logro-text-col {
        margin-bottom: 30px;
        text-align: center;
    }

    .quienes-img-col,
    .credito-img-col,
    .logro-img-col {
        text-align: center;
    }

    .section-img {
        width: 350px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    .beneficio-number {
        font-size: 1.5rem;
    }

    .beneficio-num-icon img {
        width: 45px;
        height: 45px;
    }

    .beneficios-footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .testimonios-main {
        flex-direction: column;
        gap: 20px;
    }

    .testimonios-secondary {
        flex-direction: column;
        align-items: center;
    }

    .testimonio-card {
        max-width: 100%;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .btn-cta-contact {
        font-size: 1.1rem;
        padding: 12px 35px;
    }

    .logro-header {
        text-align: center;
    }

    .requisitos-list {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.4rem;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .badge-purple {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
}