:root {
    --off-white: #F5F5F5;
    --beige: #E6D5C3;
    --coffee: #B8A38D;
    --cocoa: #8C7A6B;
    --brown: #5E4B3A;
    --light-brown: #D7CEC7;
    --dark-brown: #3E2D21;
    --accent: #9C7C5B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--off-white);
    overflow-x: hidden;
}

header {
    background-color: var(--brown);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

nav .logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

nav .logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    padding-left: 0;
    flex-grow: 1;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    padding: 5px 10px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

nav ul li a:hover {
    color: var(--beige);
    background-color: rgba(255, 255, 255, 0.1);
}

nav ul li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--beige);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li:hover::after {
    width: 100%;
}

.menu-icon {
    display: none;
    cursor: pointer;
    color: var(--off-white);
    font-size: 28px;
    transition: transform 0.3s ease;
}

.menu-icon:hover {
    transform: scale(1.1);
}

section {
    padding: 100px 20px;
    scroll-margin-top: 80px;
}

#home {
    background-color: var(--off-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 150px 20px 80px;
    flex-wrap: wrap;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
}

#home .content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

#home .content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-brown);
    line-height: 1.2;
}

#home .content h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--brown);
    font-weight: 400;
}

#home .content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--dark-brown);
}

#home .whatsapp-btn-container {
    text-align: left;
    margin-top: 40px;
}

#home .whatsapp-btn {
    background-color: var(--accent);
    color: white;
    font-size: 1.1rem;
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#home .whatsapp-btn:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

#home .image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    animation: fadeIn 1s ease;
}

#home .image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    max-width: 100%; /* REMOVIDO o limite fixo de 400px */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

#home .image img:hover {
    transform: scale(1.03);
}

#sobre-mim {
    background-color: var(--coffee);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#sobre-mim .image {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    margin-right: 40px;
    animation: fadeInLeft 1s ease;
}

#sobre-mim .image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    max-width: 100%; /* REMOVIDO max-height e object-fit */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

#sobre-mim .image img:hover {
    transform: scale(1.03);
}

#sobre-mim .text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    animation: fadeInRight 1s ease;
}

#sobre-mim .text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-brown);
    position: relative;
}

#sobre-mim .text h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    bottom: -10px;
    left: 0;
}

#sobre-mim .text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark-brown);
}

#sobre-mim .whatsapp-btn-container {
    text-align: left;
    margin-top: 30px;
}

#sobre-mim .whatsapp-btn {
    background-color: var(--accent);
    color: white;
    font-size: 1.1rem;
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#sobre-mim .whatsapp-btn:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

#abordagem {
    background-color: var(--off-white);
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#abordagem .content {
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 1s ease;
}

#abordagem h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--dark-brown);
    position: relative;
    display: inline-block;
}

#abordagem h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

#abordagem h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--brown);
    text-align: left;
}

#abordagem p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark-brown);
    text-align: left;
}

#abordagem ul {
    list-style-type: none;
    text-align: left;
    margin-bottom: 30px;
}

#abordagem ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--dark-brown);
}

#abordagem ul li::before {
    content: '•';
    color: var(--accent);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

#depoimentos {
    background-color: var(--light-brown);
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#depoimentos h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark-brown);
    position: relative;
}

#depoimentos h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.depoimentos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.depoimento {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.depoimento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.estrelas {
    color: #FFD700;
    font-size: 1.2rem;
}

.data {
    color: var(--cocoa);
    font-size: 0.9rem;
}

.autor {
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 10px;
}

.texto-depoimento {
    color: var(--dark-brown);
    font-style: italic;
    line-height: 1.6;
}

.ver-mais-container {
    text-align: center;
    margin-top: 40px;
    grid-column: 1 / -1;
}

.ver-mais-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ver-mais-btn:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

#localizacao {
    background-color: var(--off-white);
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#localizacao h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark-brown);
    position: relative;
}

#localizacao h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.localizacao-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.endereco {
    flex: 1;
    min-width: 300px;
    animation: fadeInLeft 1s ease;
}

.endereco h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--brown);
}

.endereco p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
}

.endereco i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 1.2rem;
}

.whatsapp-btn-container {
    margin-top: 30px;
}

.mapa {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 1s ease;
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#faq {
    background-color: var(--coffee);
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark-brown);
    position: relative;
}

#faq h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
}

.faq-btn {
    background-color: var(--accent);
    color: white;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-btn:hover {
    background-color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.faq-btn::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-btn[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(0);
}

.faq-answer {
    display: none;
    padding: 20px;
    background-color: white;
    margin-top: 5px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease;
}

.faq-answer p {
    font-size: 1.1rem;
    color: var(--dark-brown);
    line-height: 1.6;
}

#contato {
    background-color: var(--light-brown);
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#contato h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark-brown);
    position: relative;
}

#contato h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item a {
    color: var(--dark-brown);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: var(--brown);
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--dark-brown);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease;
}

.form-container h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--brown);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-brown);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-brown);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(156, 124, 91, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background-color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    display: none;
    animation: fadeIn 0.5s ease;
}

footer {
    background-color: var(--dark-brown);
    color: var(--off-white);
    padding: 30px 20px;
    text-align: center;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer a {
    color: var(--beige);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent);
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    #home {
        min-height: auto; 
        padding: 130px 20px 50px; 
    }
    
    #home .content {
        order: 2; 
        text-align: center;
        margin-bottom: 30px;
    }
    
    #home .content h1 {
        font-size: 2.2rem;
    }
    
    #home .content h2 {
        font-size: 1.5rem;
    }
    
    #sobre-mim .image {
        margin-right: 0;
        margin-bottom: 40px;
    }
    
   
    #home .image img,
    #sobre-mim .image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--dark-brown);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        animation: fadeIn 0.5s ease;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        font-size: 1.5rem;
    }
    
    .menu-icon {
        display: block;
        z-index: 1000;
    }
    
    #home, #sobre-mim {
        padding-top: 120px;
        flex-direction: column;
    }
    
    #home .content, #sobre-mim .text {
        text-align: center;
    }
    
    #home .whatsapp-btn-container, #sobre-mim .whatsapp-btn-container {
        text-align: center;
    }
    
    .localizacao-container {
        flex-direction: column;
    }
    
    .mapa {
        width: 100%;
        height: 300px;
    }
    
    .form-container {
        padding: 20px;
    }
    
   
    #home .image,
    #sobre-mim .image {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 30px;
    }

    #home .image img,
    #sobre-mim .image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 15px;
    }
    
    #home .content h1 {
        font-size: 1.8rem;
    }
    
    #home .content h2 {
        font-size: 1.3rem;
    }
    
    #sobre-mim .text h2, #abordagem h2, #depoimentos h2, #localizacao h2, #faq h2, #contato h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        min-width: 120px;
    }
    
    .depoimento {
        padding: 20px;
    }
    
    .faq-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .submit-btn {
        padding: 12px 20px;
    }
    
    
    #home .image img,
    #sobre-mim .image img {
        max-width: 100%;
        height: auto;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .depoimentos-container {
        grid-template-columns: 1fr;
    }
    
    #home, #sobre-mim {
        flex-direction: column;
        text-align: center;
    }
    
    #home .whatsapp-btn-container, #sobre-mim .whatsapp-btn-container {
        justify-content: center;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
  
    #home .image img,
    #sobre-mim .image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 360px) {
    #home .content h1 {
        font-size: 1.5rem;
    }
    
    #home .content h2 {
        font-size: 1.1rem;
    }
    
    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .depoimento {
        padding: 15px;
    }
    
    .form-container {
        padding: 15px;
    }
    
   
    #home .image img,
    #sobre-mim .image img {
        max-width: 100%;
        height: auto;
    }
}