@font-face {
    font-family: 'Poppins';
    src: url('Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cinzel';
    src: url('Cinzel/static/Cinzel-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Times, serif;
}

body p {
    font-size: 2.6vh;
}

.header {
    padding: 3vh 22vh;
    background-color: #C7C4C3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.header .left img {
    max-width: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.button {
    text-decoration: none;
    color: black;
}

.button-contact {
    text-decoration: none;
    background-color: #EAEAE8;
    color: black;
    padding: 8px 40px;
    border-radius: 20px;
}

.main {
    padding: 0vh 22vh;
    background-image: url("imgs/background.png");
    align-items: start;
    background-size: cover;
    background-position: center;
    height: 100vh;
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    p {
        padding-right: 80vh;
        margin: 0;
    }

    .title {
        font-size: 36px;
        font-weight: 500;
    }
}

.main .button {
    display: inline-block;
    border: solid 1px;
    border-radius: 30px;
    box-sizing: border-box;
    padding: 12px 50px;
    margin-top: 4vh;
    white-space: nowrap;
}

.message {
    background-color: #EAEAE8;
    display: flex;
    padding: 8vh 22vh;
}

.message p {
    font-size: 3vh;
    text-align: justify;
}

.explanation {
    padding: 8vh 22vh;
    background-image: url(imgs/fundo2.png);
    padding: 12vh 22vh;
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    .left {
        font-size: 3.5vh;
        justify-content: center;
    }

    p {
        display: flex;
    }

    h1 {
        font-family: 'Cinzel', Times, serif;
        display: flex;
        justify-content: center;
        /* align-items: center; */
    }
}

.explanation img {
    padding-right: 10px;
    height: 30px;
}

.about-us {
    padding: 8vh 22vh;
    background-color: #EAEAE8;
    display: grid;
    grid-template-columns: 6fr 4fr;
    align-items: center;

    h1 {
        font-family: 'Cinzel';
    }

    .left p {
        padding-right: 5vh;
        text-align: justify;
    }
}

.about-us .left .button {
    display: inline-block;
    border: solid 1px;
    border-radius: 30px;
    box-sizing: border-box;
    padding: 12px 24px;
    background-color: #CDCDCA;
    margin: 5vh;
}

.about-us .right {
    padding-left: 15vh;

    img {
        max-width: 50vh;
        border-radius: 30px;
    }
}

.why {
    background-color: #EAEAE8;
    padding: 8vh 22vh;
}

.why a {
    color: black;
    background-color: #D4C2B9;
    border-radius: 30px;
    padding: 2vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why .title {
    font-family: 'Cinzel';
    text-align: center;
    font-size: 6vh;
}

.why .divider {
    margin: 0vh 70vh;
    background-color: #B8A49C;
    font-size: 7px;
    font-weight: 100px;
    border-radius: 30px;
    color: #B8A49C;
}

.why .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5vh 10vh;

    .squares {
        margin: 3vh;
    }
}

.why .container .squares img {
    padding-right: 10px;
    width: 60px;
    border-radius: 30px;
}

.why .container .squares h1 {
    display: flex;
    align-items: center;
    margin-bottom: 2vh;

}

.quote {
    background-image: url(imgs/fundo.png);
    padding: 12vh 22vh;
    background-size: cover;
    background-position: center;

    p {
        color: white;
        text-align: center;
    }
}

.reviews-section {
    background-color: #f8f8f8;
    padding: 10vh 10vw;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 6vh;
}

.reviews-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-title img {
    width: 40px;
    height: 40px;
}

.reviews-title h2 {
    font-size: 28px;
    font-family: 'Cinzel', serif;
    color: #333;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.reviews-rating .rating-value {
    font-size: 24px;
    font-weight: 600;
}

.reviews-rating .stars {
    color: #f4b400;
    font-size: 20px;
}

.reviews-rating .reviews-count {
    color: #666;
    font-size: 14px;
}

.review-btn {
    background-color: #0077ff;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.review-btn:hover {
    background-color: #005fd1;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-header h3 {
    font-size: 16px;
    margin: 0;
}

.review-header p {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.review-stars {
    color: #f4b400;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.faq-section {
    background-color: #d8ccc3;
    /* tom bege suave */
    padding: 80px 10vw;
    font-family: "Poppins", sans-serif;
}

.faq-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.faq-left {
    flex: 1;
    text-align: left;
    color: #222;
    font-family: "Playfair Display", serif;
}

.faq-left .faq-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.faq-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.faq-right {
    flex: 2;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 0;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #6b4ce6;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-answer p {
    margin-top: 10px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.mobile-header {
    display: none;
}

.footer {
    background-color: #f9f9f9;
    padding: 60px 10vw 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-logo {
    max-width: 300px;
    height: auto;
}

.footer-divider {
    width: 1px;
    background-color: #333;
    height: 200px;
}

.footer-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    flex: 1;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #6b4ce6;
}

.footer-social p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #000;
    font-size: 22px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: #6b4ce6;
}

.footer-copy {
    font-size: 13px;
    color: #555;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
    }

    .faq-left {
        text-align: center;
    }

    .faq-left h2 {
        font-size: 2rem;
    }

    .header {
        display: none;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2vh 4vh;
        background-color: #C7C4C3;
    }

    .mobile-header img {
        max-width: 25vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-header .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: #EAEAE8;
        position: absolute;
        top: 10vh;
        right: 0;
        left: 0;
        text-align: center;
    }

    .mobile-header .mobile-menu a {
        padding: 2vh 0;
        text-decoration: none;
        color: black;
    }

    .mobile-header.active .mobile-menu {
        display: flex;
    }

    .menu-toggle {
        background: none;
        border: none;
        color: black;
        font-size: 28px;
        cursor: pointer;
    }

    body p,
    .message p,
    .about-us .left p,
    .why .container .squares p,
    .explanation p {
        font-size: 12px;
    }

    .right,
    .main,
    .left,
    .why,
    .explanation,
    .message,
    .quote {
        align-items: flex-start;
        justify-content: flex-start;
    }

    h1,
    h2,
    h3,
    img {
        text-align: center;
    }

    .button,
    .button-contact {
        display: inline-block;
        margin: 1.5vh auto;
        text-align: center;
    }

    .main {
        grid-template-columns: 1fr;
        display: block;
        padding: 8vh;
        background-position: center;
        background-size: cover;
        background-image: url(imgs/media.png);
    }

    .main .title {
        font-size: 25px;
        white-space: nowrap;
        padding: 0;
    }

    .main .button {
        font-size: small;
        padding: 6px 8px;
        white-space: nowrap;

    }

    .main p {
        padding: 0;
        margin-top: 20px;
    }

    .message,
    .explanation,
    .about-us,
    .why,
    .quote,
    .reviews {
        padding: 6vh;
    }

    .explanation {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 30px;
    }

    .about-us {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about-us .left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .text {
            padding-right: 0;
        }

        .button {
            font-size: 12px;
            margin: 5vh;
        }
    }

    .about-us .right {
        padding-left: 0;

        img {
            min-width: 30vh;
            max-width: 40vh;
            display: flex;
            flex-direction: column;
            align-self: center;
        }
    }

    .why {
        grid-template-columns: 1fr;
        align-items: center;

        .title {
            font-size: 20px;
            white-space: nowrap;
        }
    }

    .why .container {
        grid-template-columns: 1fr;
        padding: 0;

        h1 {
            font-size: 20px;
        }

        img {
            max-width: 40px;
            margin: 0;
        }

        .squares {
            display: flex;
            flex-direction: column;
            align-items: center;

        }
    }

    .why a {
        font-size: 12px;
        margin-top: 10px;
        padding: 2vh;
        display: block;
        text-align: center;
    }

    .why .divider {
        margin: 0;
    }



    @media (max-width: 768px) {
        .reviews-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .social-icons {
            display: flex;
            justify-content: center;
        }

        .reviews-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .review-btn {
            margin-top: 10px;
        }

        .footer-container {
            flex-direction: column;
            gap: 40px;
        }

        .footer-logo {
            width: 40vh;
        }

        .footer-divider {
            display: none;
        }

        .footer-right {
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            text-align: center;
        }

        .footer-links {
            align-items: center;
        }
    }
}