/* ====================================================== */
/* ================== QUEM SOMOS PAGE =================== */
/* ====================================================== */

/* ========================== */
/* ====== Intro Text ====== */
/* ========================== */
.services-page-text-highlight {
    color: var(--color-1);
}

.services-page-upper-desc {
    color: var(--middle-dark);
    font-weight: 300;
    line-height: 1.6;
    font-size: 18.5px;
}

/* ============================== */
/* ====== Values Section ====== */
/* ============================== */
.values-section-image {
    padding: 8px 0 72px;
    width: 100%;
}

.values-container-box {
    background: linear-gradient(135deg, rgba(0, 64, 143, 0.15) 0%, rgba(0, 64, 143, 0.25) 100%);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .values-container-box {
        padding: 60px 40px;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: flex-start;
    }
}

.title-blue {
    color: var(--color-2) !important;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    gap: 16px;
}

.value-icon {
    margin-bottom: 8px;
    background-color: var(--color-2);
    padding: 12px;
    border-radius: 20px;
}

.value-icon svg {
    width: 60px;
    height: 60px;
}

.value-icon svg path {
    fill: var(--color-1) !important;
}

.value-item h3 {
    color: var(--color-2);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.value-item p {
    color: var(--middle-dark);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.4;
    max-width: 250px;
    margin: 0 auto;
    min-height: 60px;
    /* Estabiliza o card */
}

/* ====================================================== */
/* ==================== REVIEWS SECTION ================= */
/* ====================================================== */
.reviews-section {
    padding: 40px 0 60px;
    background:
        linear-gradient(135deg, rgba(0, 12, 26, 0.79) 0%, rgba(10, 60, 150, 0.84) 100%),
        url("../images/elet-curitiba-small.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

@media (min-width: 768px) {
    .reviews-section {
        background-image:
            linear-gradient(135deg, rgba(0, 12, 26, 0.79) 0%, rgba(10, 60, 150, 0.84) 100%),
            url("../images/elet-curitiba-medium.webp");
    }
}

@media (min-width: 992px) {
    .reviews-section {
        background-image:
            linear-gradient(135deg, rgba(0, 12, 26, 0.79) 0%, rgba(10, 60, 150, 0.84) 100%),
            url("../images/elet-curitiba.webp");
    }
}

@media (min-width: 1080px) {
    .reviews-section {
        background-attachment: fixed;
    }
}

.reviews-section .section-title {
    color: var(--light) !important;
    text-shadow: 2px 3px 7px rgba(0, 0, 0, 0.25);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

/* Swiper Container Padding */
.mySwiper {
    padding-bottom: 50px !important;
}

.mySwiper .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
}

.mySwiper .swiper-slide {
    display: flex !important;
    height: auto !important;
}

/* Swiper Navigation */
.swiper-navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 !important;
    background-color: var(--background);
    border-radius: 50% !important;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 28px !important;
    height: 28px !important;
    color: var(--color-1);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--color-1);
}

.swiper-button-prev:hover svg,
.swiper-button-next:hover svg {
    color: var(--light);
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Review Cards */
.review-card {
    background: var(--background);
    border-radius: 20px;
    padding: 32px;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    transition: transform 0.3s ease;
    flex: 1 !important; /* Stretch to fill slide height */
    height: auto !important;
    min-height: 280px;
}

.review-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-stars {
    color: #ffd700;
    font-size: 20px;
    letter-spacing: 2px;
}

.review-author {
    color: var(--color-2);
    font-size: 20px;
    font-weight: 600;
}

.review-text {
    color: var(--middle-dark);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: var(--color-1) !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    border-radius: 50% !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* ======================================================================================== */
/* CTA BLUE (ABAIXO DO REVIEWS) */
/* ======================================================================================== */

.cta-blue {
    padding: 80px 0 80px;
    width: 100%;
}

.cta-blue-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: center;
    background-color: var(--color-2);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.cta-blue-text h2 {
    color: var(--light);
    font-size: 28px;
    margin-bottom: 16px;
    text-align: left;
    position: relative;
    z-index: 2;
    font-family: "Barlow", sans-serif !important;
}

.cta-blue-text p {
    color: var(--light);
    font-size: 18px;
    font-weight: 300;
    text-align: left;
    position: relative;
    z-index: 2;
}

.cta-blue-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.cta-blue-button {
    background-color: var(--color-1);
    color: var(--light);
    border-radius: 20px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    border: 3px solid var(--color-2);
    height: 52px !important;
    width: 280px !important;
}

.cta-blue-button:hover {
    background-color: transparent;
    color: var(--color-1);
    border: 3px solid var(--color-1);
}

.cta-blue-button svg {
    width: 24px;
    height: 24px;
    fill: var(--light);
    transition: all 0.3s ease;
}

.cta-blue-button:hover svg {
    fill: var(--color-1);
}

.cta-blue .secundary-cta-button {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 20.5px;
    font-weight: 600;
    color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    height: 52px !important;
    width: 280px !important;
}

.cta-blue .secundary-cta-button:hover {
    background-color: var(--light);
    color: var(--color-2);
}

.cta-blue .secundary-cta-button svg {
    fill: var(--light);
}

.cta-blue .secundary-cta-button:hover svg {
    fill: var(--color-2);
}

@media (min-width: 780px) {
    .cta-blue-wrapper {
        justify-content: space-between;
        text-align: left;
    }

    .cta-blue-text h2 {
        text-align: center;
        font-size: 36px;
    }

    .cta-blue-text p {
        padding: 0 112px;
    }

    .cta-blue-buttons-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
}

/* ============================== */
/* ====== Card Watermark ======== */
/* ============================== */
.card-watermark {
    position: absolute !important;
    bottom: -40px !important;
    right: -40px !important;
    color: rgba(255, 255, 255, 0.04) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Mobile First: default sizes */
.card-watermark svg,
.card-watermark.small svg {
    width: 292px !important;
    height: 292px !important;
}

/* Watermarks nos cards de CTA (maiores e mais visíveis) */
.cta-blue .card-watermark svg {
    width: 450px !important;
    height: 450px !important;
}

/* Desktop: larger sizes */
@media (min-width: 769px) {
    .card-watermark svg {
        width: 420px !important;
        height: 420px !important;
    }

    .card-watermark.small svg {
        width: 380px !important;
        height: 380px !important;
    }

    .cta-blue .card-watermark {
        bottom: -160px !important;
    }

    .cta-blue .card-watermark svg {
        width: 620px !important;
        height: 620px !important;
    }
}
