:root {
    --primary-color: #FF6A00;
    --secondary-color: #369672;
    --background-color: #FDF6F2;
    --text-color: #333;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    background-color: var(--background-color) !important;
    color: var(--text-color);
    line-height: 1.6;
}

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

header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

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

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

.logo span {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 999;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: var(--primary-color);
    margin: 4px 0;
    transition: 0.4s;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    justify-content: flex-end;
}

.menu li {
    display: inline;
}

.menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.menu li a.active,
.menu li a:hover {
    color: var(--primary-color);
}

.barra {
    border-right: 2px solid #333;
    height: 20px;
    margin-left: 20px;
    margin-right: 20px;
    display: inline-block;
    vertical-align: middle;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.social-icons img {
    height: 16px;
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        text-align: center;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .menu.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        background-color: #fff;
    }

    .menu-toggle {
        display: flex;
    }

    .menu li {
        padding: 15px 0;
    }

    .social-icons {
        display: none;
        justify-content: center;
        margin-top: 10px;
    }

    .barra {
        display: none;
    }
    .contact-section{
        flex-direction: column;
        form{
            width: 90%;
        }
    }
    
    .contact-form {
        padding: 80px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        input{
            max-width: 90%;
        }
        textarea{
            max-width: 90%;
        }
    }
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 150px 0;
    gap: 50px;
    background-color: #FDF6F2 !important;
    
}

/* .contact-info, .contact-form {
    flex: 1;
} */

h1 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color) !important;
}

button {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #2d7558;
    transform: translateY(-2px);
}
/* Popup do whatsapp fixo */

/* Estilo básico do botão do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 0px;
    background-color: #25d366;
    border-radius: 50px 0px 0px 50px;
    padding: 0px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Texto que aparece ao expandir */
.whatsapp-text {
    margin-left: 10px;
    font-size: 16px;
    color: white;
    max-width: 0;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.5s ease, opacity 0.5s ease;
}

.whatsapp-expanded .whatsapp-text {
    max-width: 200px;
    opacity: 1;
}

.whatsapp-expanded {
    padding-right: 20px;
    transition: all 0.5s ease;
}

/* Estilo da animação Lottie */
.lottie-container {
    width: 60px;
    height: 60px;
}

.contact-form {
    padding: 80px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    input{
        max-width: 95%;
    }
    textarea{
        max-width: 95%;
    }
}