/* Reset geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Corpo da página */
body {
    background-color: #fff;
    color: #000;
    line-height: 1.6;
}

/* Cabeçalho */
.header {
    position: fixed;
    /* para manter no topo ao rolar */
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: #fff;
    /* leve transparência */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 25px;
    font-weight: 600;
}

.logo span {
    color: rgb(255, 225, 0);
}

.logo small {
    display: block;
    font-size: 12px;
    font-weight: 100;
}

.nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.85;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav span {
    color: rgb(255, 225, 0);
}

.nav a:hover {
    transform: scale(1.15);
}

/* ====== SECÇÃO ABOUT ====== */
.about-section {
    margin-top: 100px;
    padding: 60px 10%;
    background-color: #f8f8f8;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 8px;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    background-color: #b9752d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #b8860b;
}

/* Imagem à direita */
.about-image {
    flex: 1;
    text-align: right;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

/* ==================== FEEDBACK SECTION ==================== */
.feedback-section {
    padding: 80px 10%;
    background-color: #f8f8f8;
    text-align: center;
}

.feedback-section h2 {
    font-size: 28px;
    margin-bottom: 50px;
}

.feedback-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    /* garante que os 4 cards fiquem na mesma linha */
}

.feedback-card {
    display: flex;
    /* horizontal */
    align-items: flex-start;
    width: 280px;
    min-height: 140px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.feedback-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.feedback-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
    text-align: left;
}

.feedback-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    text-align: left;
}

.stars {
    font-size: 18px;
    color: #b9752d;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-align: left;
}

/* Responsividade */
@media (max-width: 1200px) {
    .feedback-cards {
        flex-wrap: wrap;
        justify-content: center;

    }
}

@media (max-width: 600px) {
    .feedback-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feedback-card img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .feedback-content h3,
    .feedback-content p,
    .stars {
        text-align: center;
    }
}

/* Footer principal */
.site-footer {
    margin-top: -100px;
    background-color: #fff;
    color: #1f1f1f;
    padding: 60px 10% 20px;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.site-footer h3,
.site-footer h4 {
    color: #000;
    margin-bottom: 15px;
}

.site-footer p {
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact a,
.footer-link {
    color: #b9752d;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-link:hover {
    text-decoration: underline;
}

.footer-social img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #000;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #1f1f1f;
}

.footer-socials a {
    display: inline-block;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Formulário */
.footer-contact input,
.footer-contact textarea {
    background-color: #f3f2f2b9;
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: none;
}

.footer-contact button {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.footer-contact button:hover {
    opacity: 0.9;
}

/* BOTÃO MENU MOBILE */
/* BOTÃO MENU MOBILE – FIXO NO CANTO SUPERIOR DIREITO */
.menu-mobile {
    position: fixed;
    top: 25px;
    right: 30px;
    font-size: 28px;
    cursor: pointer;
    z-index: 1100;
    display: none;
    user-select: none;
}

/* MENU MOBILE BASE */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 120px 30px;
    gap: 25px;
    transition: right 0.4s ease;
    z-index: 1000;
}

.mobile-nav a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000;
}

/* MENU ABERTO */
.mobile-nav.active {
    right: 0;
}

/* ===== 900px até 500px ===== */
@media (max-width: 900px) {
    .mobile-nav span {
        color: rgb(255, 225, 0);
        /* Destaque em amarelo para parte da logo */
    }

    .nav {
        display: none;
    }

    .menu-mobile {
        display: block;
    }

    .about-container {
        display: flex;
        flex-direction: column;
    }
    .about-image img {
        display: none;
    }

    .feedback-section {
        display: flex;
        margin-top: -20%;
    }
}

/* ===== abaixo de 500px ===== */
@media (max-width: 500px) {
    .mobile-nav span {
        color: rgb(255, 225, 0);
        /* Destaque em amarelo para parte da logo */
    }

    .mobile-nav {
        width: 100%;
        padding: 140px 40px;
        text-align: center;
    }

    .mobile-nav a {
        font-size: 18px;
    }
    .about-image img {
        display: none;
    }
    .about-image img {
        display: none;
    }

    .feedback-section {
        display: flex;
        margin-top: -35%;
    }

}



