/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #f8e1e9 0%, #fce4ec 100%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container img {
    max-width: 160px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links li a:hover {
    color: #d81b60;
    transform: translateY(-2px);
}

.nav-links .icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.nav-links .active {
    color: #d81b60;
}

.cta-button {
    background-color: #d81b60;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #b0003a;
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Botão de Voltar */
.back-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #d81b60;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 20px 40px;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #b0003a;
}

.back-icon {
    font-size: 1.5rem;
    margin-right: 8px;
}

/* Seção de Contato */
.section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #d81b60;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-group .required {
    color: #d81b60;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d81b60;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    padding: 12px 24px;
    background-color: #d81b60;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #b0003a;
    transform: scale(1.05);
}

.thank-you-message {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f8e1e9;
    border-radius: 10px;
    text-align: center;
}

.thank-you-message p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.thank-you-message button {
    padding: 10px 20px;
    background-color: #d81b60;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.thank-you-message button:hover {
    background-color: #b0003a;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #f8e1e9 0%, #fce4ec 100%);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .back-button {
        margin: 15px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    #contact-form {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        max-width: 120px;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 10px;
    }

    .submit-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@400;600&display=swap');