@font-face {
    font-family: 'Adobe Arabic';
    src: url('AdobeArabic-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-black: #1d1d1b;
    --color-silver: #CCCCCC;
    --color-gold-light: #D4AF37;
    --color-gold-dark: #B8860B;
    --color-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', 'Arial', sans-serif;
    letter-spacing: 0.02em;
}

h1, h2, h3 {
    font-family: 'Adobe Arabic', serif;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(29, 29, 27, 0.9);
    padding: 1rem 0;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.social-links a {
    color: var(--color-gold-dark);
    font-size: 1.5rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-silver);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: linear-gradient(rgba(29, 29, 27, 0.7), rgba(29, 29, 27, 0.7)), url('images/pb.jpg');
    background-size: cover;
    background-position: center 10%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold-light);
    letter-spacing: 0.03em;
    font-family: 'Cal Sans', sans-serif;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-silver);
    letter-spacing: 0.03em;
}

.cref {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-gold-dark);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-silver);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background-color: var(--color-black);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
    z-index: 1;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--color-gold-light);
    font-family: 'Cal Sans', sans-serif;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    position: relative;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:first-child .service-image {
    object-position: center 20%;
}

.service-card:last-child .service-image {
    object-position: center 30%;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
    color: var(--color-white);
    text-align: center;
}

.service-card h3 {
    color: var(--color-gold-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Cal Sans', sans-serif;
}

.service-card p {
    color: var(--color-white);
    font-size: 1.2rem;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card.active {
    border: 2px solid var(--color-gold-dark);
}

.service-card.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--color-gold-dark);
}

.service-content .cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-gold-dark);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.service-content .cta-button:hover {
    background-color: var(--color-silver);
    transform: translateY(-2px);
}

/* Service Detail Section */
.service-detail {
    margin-top: 4rem;
    display: flex;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    height: 100vh;
    position: relative;
}

.service-detail.active {
    opacity: 1;
    transform: translateY(0);
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-black);
    position: relative;
}

.service-detail-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 200px;
    height: 100%;
    background: var(--color-black);
    transform: skewX(-10deg);
    z-index: 1;
}

.service-detail-content > * {
    position: relative;
    z-index: 2;
}

.service-detail-title {
    color: var(--color-gold-light);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: 'Cal Sans', sans-serif;
    transition: opacity 0.3s ease;
}

.service-detail-description {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-detail.active .service-detail-description {
    opacity: 1;
    transform: translateY(0);
}

.service-detail-description .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-gold-dark);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.service-detail-description .cta-button:hover {
    background-color: var(--color-silver);
    transform: translateY(-2px);
}

.service-detail-content h3 {
    color: var(--color-gold-light);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-family: 'Adobe Arabic', serif;
}

.service-detail-content p {
    color: var(--color-white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    letter-spacing: 0.03em;
    max-width: 600px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
}

.service-detail-content li {
    color: var(--color-silver);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content li::before {
    content: '•';
    color: var(--color-gold-dark);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .service-detail {
        flex-direction: column;
        height: auto;
    }

    .service-detail-image {
        height: 50vh;
    }

    .service-detail-content {
        padding: 3rem 2rem;
    }

    .service-detail-content::before {
        display: none;
    }

    .service-detail-content h3 {
        font-size: 2.8rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .service-detail {
        height: auto;
        margin-top: 2rem;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .service-detail.active {
        transform: translateY(0) scale(1);
    }

    .service-detail:not(.active) {
        transform: translateY(10px) scale(0.98);
    }

    .service-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 0 2rem 1rem 2rem;
        margin: 2rem -2rem;
    }

    .service-card {
        min-width: 85vw;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        margin-right: 1rem;
        height: 400px;
    }

    .service-card:last-child {
        margin-right: 0;
    }

    /* Estilizando a scrollbar */
    .service-cards::-webkit-scrollbar {
        height: 8px;
    }

    .service-cards::-webkit-scrollbar-track {
        background: rgba(204, 204, 204, 0.1);
        border-radius: 4px;
    }

    .service-cards::-webkit-scrollbar-thumb {
        background: var(--color-gold-dark);
        border-radius: 4px;
    }

    .service-card h3 {
        font-size: 2rem;
    }

    .service-detail-image {
        height: 40vh;
    }

    .service-detail-content {
        padding: 2rem 1.5rem;
    }

    .service-detail-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .service-content .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }

    .service-detail-description .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
        display: block;
        text-align: center;
        margin: 2rem auto 0;
        max-width: 200px;
    }
}

/* About Section */
.about {
    height: 100vh;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
    z-index: 1;
}

.about-content {
    display: flex;
    height: 100%;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-black);
}

.about h2 {
    font-size: 3.5rem;
    color: var(--color-gold-light);
    margin-bottom: 2rem;
    font-weight: bold;
    font-family: 'Cal Sans', sans-serif;
}

.about-description {
    max-width: 600px;
}

.about-description p {
    color: var(--color-white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    text-align: justify;
    letter-spacing: 0.03em;
}

@media (max-width: 1024px) {
    .about {
        height: auto;
        min-height: 100vh;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image-wrapper {
        height: 60vh;
    }

    .about-text {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .about-image-wrapper {
        height: 50vh;
    }

    .about h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-description p {
        font-size: 1.1rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background-color: var(--color-black);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
    z-index: 1;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--color-gold-light);
    font-family: 'Cal Sans', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select {
    padding: 1rem;
    border: 2px solid var(--color-gold-dark);
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-gold-dark);
}

.submit-button {
    padding: 1rem;
    background-color: var(--color-gold-dark);
    color: var(--color-black);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--color-silver);
}

/* Footer */
.footer {
    background-color: var(--color-black);
    padding: 3rem 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    height: 50px;
}

.footer-info {
    text-align: center;
    color: var(--color-silver);
}

.footer-social a {
    color: var(--color-gold-dark);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-silver);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        margin-top: 1rem;
    }

    .services h2,
    .testimonials h2,
    .contact h2,
    .about h2,
    .faq h2 {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-element {
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 4rem;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--color-gold-light);
    position: relative;
    font-family: 'Cal Sans', sans-serif;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold-dark);
}

.testimonials-slider {
    position: relative;
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: max-content;
    margin: 0 auto;
}

.testimonial-card {
    width: calc((100vw - 8rem - 4rem) / 3);
    min-width: 300px;
    max-width: 400px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(29, 29, 27, 0.95), rgba(29, 29, 27, 0.8));
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, var(--color-gold-dark), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content i {
    font-size: 1.8rem;
    color: var(--color-gold-dark);
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.testimonial-content p {
    color: var(--color-silver);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    text-align: justify;
    letter-spacing: 0.03em;
}

.testimonial-content p::-webkit-scrollbar {
    width: 4px;
}

.testimonial-content p::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
}

.testimonial-content p::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.author-name {
    color: var(--color-gold-light);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.nav-button {
    background: transparent;
    border: 1px solid var(--color-gold-dark);
    color: var(--color-gold-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav-button.prev-button {
    left: 0;
}

.nav-button.next-button {
    right: 0;
}

.nav-button:hover {
    background: var(--color-gold-dark);
    color: var(--color-black);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-gold-dark);
    transform: scale(1.2);
}
@media (max-width: 1200px) {
    .testimonial-card {
        width: calc((100vw - 8rem - 2rem) / 2);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: calc(100vw - 3rem);
        min-width: unset;
    }

    .testimonials h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .testimonial-content p {
        max-height: 200px;
    }

    .community-image-container {
        margin-bottom: 2rem;
        padding: 0;
    }

    .community-image {
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .testimonials-container {
        padding: 0 1.5rem;
    }
}

/* Estilo para o botão de avaliações do Google */
.google-reviews {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.google-reviews-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-gold-dark);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--color-gold-dark);
}

.google-reviews-button i {
    font-size: 1.5rem;
}

.google-reviews-button:hover {
    background-color: var(--color-black);
    color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .google-reviews-button {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
    
    .google-reviews-button i {
        font-size: 1.3rem;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background-color: var(--color-black);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
    z-index: 1;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--color-gold-light);
    position: relative;
    font-family: 'Cal Sans', sans-serif;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold-dark);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(29, 29, 27, 0.95), rgba(29, 29, 27, 0.8));
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, var(--color-gold-dark), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.faq-question h3 {
    font-size: 1.3rem;
    color: var(--color-gold-light);
    font-weight: normal;
    transition: color 0.3s ease;
    font-family: 'Cal Sans', sans-serif;
}

.faq-icon {
    color: var(--color-gold-dark);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-icon .fa-minus {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 2rem;
}

.faq-answer p {
    color: var(--color-silver);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: justify;
    letter-spacing: 0.03em;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-icon .fa-plus {
    display: none;
}

.faq-item.active .faq-icon .fa-minus {
    display: block;
}

.faq-item.active {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-question h3 {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .faq h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
}

/* Estilo para a imagem da comunidade */
.community-image-container {
    margin: 0 auto 3rem auto; /* Centraliza e adiciona margem inferior */
    max-width: 900px; /* Define uma largura máxima */
    padding: 0 1rem; /* Adiciona um pequeno padding lateral */
}

.community-image {
    display: block; /* Remove espaço extra e permite margem auto */
    width: 100%; /* Faz a imagem ocupar o contêiner */
    height: auto; /* Mantém a proporção */
    border-radius: 12px; /* Bordas arredondadas */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45); /* Sombra mais destacada */
    object-fit: cover; /* Garante que a imagem cubra a área se necessário */
}

@media (max-width: 768px) {
    .community-image-container {
        margin-bottom: 2rem; /* Reduz a margem inferior em mobile */
        padding: 0; /* Remove padding interno para dar mais espaço à imagem */
    }
    .community-image {
        border-radius: 10px; /* Bordas um pouco menores em mobile */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); /* Sombra levemente reduzida */
    }
}

