/* Quem Somos Page Custom Styles */

/* =========== SOBRE (Matches Eletrica Styles) =========== */
/* These specific classes were used in HTML to match Eletrica */
.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: 1.15rem;
}

/* =========== VALUES SECTION (Image Background) =========== */
.values-section-image {
    padding: 60px 0;
    width: 100%;
}

.values-container-box {
    background-color: #b5cadb;
    border-radius: 40px;
    padding: 40px 20px;
    /* Mobile First: smaller padding */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Lighter shadow */
}

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

.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;
}

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

/* Make SVG orange if not already handled by inline fill, or force it */
/* Make SVG orange if not already handled by inline fill, or force it */
.value-icon svg path {
    fill: var(--color-1) !important;
}

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

.value-item p {
    color: var(--middle-dark);
    /* Dark Text */
    font-weight: 500;
    /* Slightly bolder for readability on light bg */
    font-size: 1.1rem;
    line-height: 1.4;
    max-width: 250px;
    /* Optional: limits width for better reading */
    margin: 0 auto;
}

/* =========== REVIEWS (Based on Home) =========== */
.reviews-section {
    padding: 60px 0 80px 0;
    background-color: var(--background);
}

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

.swiper {
    padding-bottom: 50px !important;
    /* Space for pagination */
    width: 100%;
}

.review-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-header {
    margin-bottom: 16px;
}

.review-stars {
    color: #ffc107;
    /* Gold star color */
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-author {
    color: var(--color-2);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.review-text {
    color: var(--middle-dark);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
}

/* Swiper navigation buttons custom style matching home */
.reviews-section .swiper-navigation-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    position: relative;
    z-index: 10;
    justify-content: flex-start;
    /* Ensure left alignment */
}

.reviews-section .swiper-button-prev,
.reviews-section .swiper-button-next {
    position: static !important;
    width: 70px !important;
    height: 50px !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    background-color: white;
    border-radius: 36px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-section .swiper-button-prev:after,
.reviews-section .swiper-button-next:after {
    content: '';
    display: none;
}

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

.reviews-section .swiper-button-prev:hover,
.reviews-section .swiper-button-next:hover {

    border-color: var(--color-1);
}

/* =================== SECTION TITLES =================== */
.section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-2);
    text-align: left;
    /* padding: 24px 0; Removed padding to avoid double padding if container has it */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.section-title svg {
    width: 48px;
    height: 48px;
    color: var(--color-1);
    /* Main Orange */
    fill: currentColor;
    flex-shrink: 0;
}

.before::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--color-1);
    border-radius: 4px;
    /* Small square with slight rounding */
    flex-shrink: 0;
    /* Center it vertically relative to text roughly, or use flex alignment */
    /* If flex center is used on parent, this might not need margin-top */
}

@media (min-width: 780px) {
    .section-title {
        font-size: 36px;
    }
}

.swiper-pagination-bullet-active {
    background-color: var(--color-1) !important;
}


/* CTA Section */
.cta-section {
    padding: 20px 0 80px 0;

}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.cta-content h2 {
    color: var(--color-2);
    font-size: 24px;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--middle-dark);
    font-size: 18.5px;

    margin: 0 20px;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-1);
    color: var(--light);
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 94, 25, 0.3);
}

.cta-button:hover {
    background-color: #fff;
    color: var(--color-1);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.cta-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (min-width: 980px) {
    .cta-box {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cta-content {
        align-items: flex-start;
        text-align: left;
    }

    .cta-content h2 {
        color: var(--color-2);
        font-size: 30px;
        margin-bottom: 16px;
    }

    .cta-content p {
        margin: 0;
    
    }
}