/* Estilos Gerais */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #D1ECF1;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background-color: #ffffff;
    padding: 15px 0;
    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: center;
    gap: 30px;
    margin-top: 15px;
}

nav a {
    text-decoration: none;
    color: #D46A92;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: #B34C7A;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #D46A92;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.logo {
    width: 180px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.03);
}

/* Banner */
.banner {
    background-color: #FADADD;
    padding: 150px 20px 60px;
    font-size: 32px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 80px;
    font-family: 'Playfair Display', serif;
    background-image: linear-gradient(to right, #FADADD, #F8C8DC, #FADADD);
    text-align: center;
}

/* Seções */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #FADADD;
    bottom: -10px;
    left: 25%;
}

h3 {
    font-size: 22px;
    margin-top: 0;
}

/* Produtos */
.produtos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.produto {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Botões - Estilo Unificado */
button, button[type="submit"] {
    background-color: #D46A92;
    color: white;
    border: none;
    padding: 12px 25px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

button:hover, button[type="submit"]:hover {
    background-color: #B34C7A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Botão WhatsApp */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 25px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #20BA5E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Depoimentos */
.testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 280px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-weight: bold;
    color: #D46A92;
}

/* Contato */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, 
.contact-map {
    min-width: 0;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #D46A92;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #D46A92;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Mapa */
.contact-map iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    border: none;
}

.map-directions {
    text-align: center;
}

.map-directions a {
    color: #D46A92;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.map-directions a:hover {
    color: #B34C7A;
}

.map-directions i {
    margin-right: 8px;
}

/* Ícones Sociais */
.social-icons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #D46A92;
    font-size: 1.8em;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #B34C7A;
    transform: translateY(-3px);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Animação */
@keyframes pulse {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.05); }
    100% { transform: scale(0.95); }
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsivo */
@media (max-width: 768px) {
    nav {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .banner {
        font-size: 22px;
        padding: 120px 20px 40px;
    }
    
    .produtos, .testimonials {
        flex-direction: column;
        align-items: center;
    }
    
    .produto, .testimonial {
        width: 100%;
        max-width: 400px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info, 
    .contact-map {
        min-width: 100%;
    }
    
    h2 {
        font-size: 28px;
    }
}