:root {
    --principal: #A37F6D;
    --secundaria: #B18E76;
    --destaque: #E8B8A7;
    --fundo: #F5ECE7;
    --fundo-card: #D9C8C0;
    --titulo: #6B4F45;
    --botao: #3E2C25;
    --texto: #3E2C25;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--fundo);
    color: var(--texto);
    line-height: 1.6;
    padding-top: 60px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--botao);
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: white;
    flex-wrap: wrap;
    height: 60px;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--destaque);
}

.logo-icon {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--destaque);
}

.hero {
    background: linear-gradient(rgba(62,44,37,0.75), rgba(62,44,37,0.75)), 
                url('../img/novobg.png') center/cover no-repeat;
    color: white;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 2s ease;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
    color: var(--destaque);
}

.hero p {
    margin-top: 1rem;
}

.hero .btn {
    margin-top: 2rem;
}

.sobre {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: auto;
}

.sobre-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.sobre-container picture {
    flex: 1 1 250px;
    max-width: 400px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.sobre-container picture img {
    display: block;    
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--secundaria);
    object-fit: contain;
    max-height: 60vh;
}

.sobre-container .texto {
    flex: 1 1 250px;
}

.sobre .texto h2 {
    margin-top: 20px;
    color: var(--titulo);
    font-size: 1.6rem;
    font-weight: 600;
}

.sobre .valores {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.sobre .valores li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--texto);
}

.sobre .valores li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--principal);
    font-weight: bold;
    font-size: 1.2rem;
}

.servicos {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.servicos h2 {
    color: var(--titulo);
    font-size: 2rem;
}

.cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.card {
    background: var(--fundo-card);
    padding: 1.5rem;
    border-radius: 10px;
    border: 3px solid var(--secundaria);
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1.5s ease forwards;
}

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

.card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 10px;
}

.card h3 {
    color: var(--principal);
}

.faq {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.faq h2 {
    font-size: 2rem;
    color: var(--titulo);
    margin-bottom: 2rem;
}

.faq-container {
    text-align: left;
}

.faq-item {
    background: var(--fundo-card);
    border: 2px solid var(--secundaria);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--principal);
}

.faq-question:hover {
    background: var(--secundaria);
    color: white;
}

.faq-answer {
    padding: 0 1.5rem;
    display: none;
    font-size: 1rem;
    line-height: 1.5;
    background: var(--fundo-card);
}

.faq-answer.show {
    display: block;
    padding: 1rem 1.5rem;
}

.arrow {
    transition: transform 0.3s;
}

.arrow.rotate {
    transform: rotate(180deg);
}

.contato {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: auto;
}

.contato h2 {
    color: var(--titulo);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contato-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contato-info {
    flex: 1 1 250px;
    background: var(--fundo-card);
    border-radius: 10px;
    border: 2px solid var(--secundaria);
    padding: 1.5rem;
    text-align: left;
}

.contato-info h3 {
    margin-bottom: 1rem;
    color: var(--principal);
}

.contato-info p {
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.contato-info i {
    margin-right: 0.5rem;
    color: var(--principal);
}

.contato-form-container {
    flex: 1 1 400px;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 2px solid var(--secundaria);
    font-size: 1rem;
}

.contato-form button {
    width: 100%;
    background: var(--botao);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.contato-form button:hover {
    background: var(--principal);
    transform: scale(1.05);
}

.form-feedback {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: green;
}

.onde-estamos {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 2rem auto;
    text-align: center;
}

.onde-estamos h2 {
    color: var(--titulo);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.onde-estamos iframe {
    border-radius: 10px;
    border: 3px solid var(--secundaria);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

footer {
    background: var(--botao);
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

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

footer .social a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--destaque);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--botao);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .logo-text {
        display: none;
    }

    .logo-icon {
        display: flex;
        align-items: center;
    }

    .logo-icon .logo-img {
        height: 35px;
        margin: 0;
    }

    .sobre-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .sobre-container picture img {
        max-height: 35vh;
        margin: 0 auto;
        display: block;
    }

    .contato-container {
        flex-direction: column;
    }
}

.email-link {
    color: var(--texto);
    font-size: 0.95rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--destaque);
}

/* Botão da sessão hero */
.hero .btn {
    display: inline-block;
    background: var(--botao);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    margin-top: 2rem;
    font-weight: 600;
    font-size: 1rem;
}

.hero .btn:hover {
    background: var(--principal);
    transform: scale(1.05);
}

.sobre h2 {
    margin-bottom: 1.5rem; 
    color: var(--titulo);
    font-size: 2rem;
    text-align: center; 
}

.contato-link {
    color: var(--texto); 
    text-decoration: none;
    transition: color 0.3s;
}

.contato-link:hover {
    color: var(--destaque); 
}


.toast {
    position: relative;
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

