/* Importação de fontes (opcional, mas recomendado para um design moderno) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
--primary-color: #ff69b4; /* Rosa forte */
--secondary-color: #6a0572; /* Roxo escuro */
--text-color: #333;
--light-bg: #f9f9f9;
--white: #fff;
 --dark-grey: #555;
}

/* Reset básico e tipografia */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: 'Poppins', sans-serif;
 line-height: 1.6;
 color: var(--text-color);
 background-color: var(--white);
}

a {
 text-decoration: none;
 color: var(--primary-color);
}

ul {
 list-style: none;
}

h1, h2, h3 {
 color: var(--secondary-color);
 margin-bottom: 1rem;
 text-align: center;
}

/* --- Header e Navegação --- */
.navbar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 background-color: var(--secondary-color);
 padding: 1rem 2rem;
 color: var(--white);
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
font-size: 1.8rem;
font-weight: 700;
color: var(--white);
}

.nav-list {
 display: flex;
}

.nav-list li {
margin-left: 2rem;
}

.nav-list a {
 color: var(--white);
 font-weight: 600;
 padding: 0.5rem 1rem;
 transition: background-color 0.3s ease;
 border-radius: 5px;
}

.nav-list a:hover {
 background-color: var(--primary-color);
}

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

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

/* Menu responsivo - quando ativo */
.navbar.active .menu-toggle .bar:nth-child(1) {
 transform: rotate(-45deg) translate(-5px, 6px);
}
.navbar.active .menu-toggle .bar:nth-child(2) {
 opacity: 0;
}
.navbar.active .menu-toggle .bar:nth-child(3) {
 transform: rotate(45deg) translate(-5px, -6px);
}

/* --- Hero Section e Carrossel --- */
.hero {
 position: relative;
 width: 100%;
 overflow: hidden;
 margin-top: -1px; /* Ajuste para evitar espaço em branco com o header */
}

.carousel-container {
 width: 100%;
 position: relative;
 margin: auto;
 overflow: hidden; /* Garante que as imagens que saem do slide não sejam visíveis */
}

.carousel-slide {
 display: none; /* Esconde todas as slides por padrão */
 text-align: center;
 position: relative;
}

.carousel-slide img {
 width: 100%;
 height: 500px; /* Altura fixa para as imagens do carrossel */
 object-fit: cover; /* Garante que a imagem preencha a área sem distorcer */
 display: block; /* Remove o espaço extra abaixo da imagem */
}

.carousel-caption {
 position: absolute;
 bottom: 20%;
 left: 50%;
 transform: translateX(-50%);
 background-color: rgba(0, 0, 0, 0.6);
 color: var(--white);
 padding: 1rem 2rem;
 border-radius: 8px;
 font-size: 2rem;
 font-weight: 700;
 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Botões de navegação do carrossel */
.prev, .next {
 cursor: pointer;
/*    position: absolute;  Corrigido para position: absolute */
 top: 50%;
 width: auto;
 padding: 16px;
 margin-top: -22px;
 color: var(--white);
 font-weight: bold;
 font-size: 18px;
 transition: 0.6s ease;
 border-radius: 0 3px 3px 0;
 user-select: none;
 background-color: rgba(0, 0, 0, 0.5);
}

.next {
 right: 0;
 border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
 background-color: rgba(0, 0, 0, 0.8);
}

/* Pontos do carrossel */
.dots-container {
 text-align: center;
 padding: 1rem 0;
 background-color: var(--light-bg);
}

.dot {
 cursor: pointer;
 height: 15px;
 width: 15px;
 margin: 0 2px;
 background-color: #bbb;
 border-radius: 50%;
 display: inline-block;
 transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
 background-color: var(--primary-color);
}

/* Animação do carrossel */
.fade {
 animation-name: fade;
 animation-duration: 1.5s;
}

@keyframes fade {
 from {opacity: .4}
 to {opacity: 1}
}

/* --- Seções Gerais --- */
section {
/*padding: 4rem 2rem;  Adicionado padding de volta para consistência */
 max-width: 1600px; /* Alterado para 1200px, conforme o HTML anterior, para evitar excesso de largura */
 margin: 0 auto;
 text-align: center;
}

section:nth-of-type(even) {
 background-color: var(--light-bg);
}

/* --- Seção de Serviços --- */
.services-section {
 background-color: var(--white);
}

.service-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
 margin-top: 2rem;
}

.service-item {
 background-color: var(--light-bg);
 padding: 2rem;
 border-radius: 10px;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 transition: transform 0.3s ease;
}

.service-item:hover {
 transform: translateY(-10px);
}

.service-item i {
 font-size: 3rem;
 color: var(--primary-color);
 margin-bottom: 1rem;
}

.service-item h3 {
 font-size: 1.5rem;
 margin-bottom: 1rem;
 color: var(--secondary-color);
}

.service-item p {
 font-size: 0.95rem;
 color: var(--dark-grey);
}

/* --- Seção de Produtos --- */
.products-section {
 background-color: var(--light-bg);
}

.product-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-top: 2rem;
}

.product-item {
 background-color: var(--white);
 padding: 1.5rem;
 border-radius: 10px;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 text-align: left;
 display: flex;
 flex-direction: column;
 align-items: center;
}

.product-item img {
 width: 150px;
 height: 150px;
 object-fit: cover;
 border-radius: 8px;
 margin-bottom: 1rem;
}

.product-item h3 {
 font-size: 1.3rem;
 margin-bottom: 0.5rem;
 color: var(--secondary-color);
 text-align: center;
}

.product-item p {
 font-size: 0.9rem;
 color: var(--dark-grey);
 flex-grow: 1; /* Para alinhar o preço na parte inferior */
 text-align: center;
}

.product-item span {
 font-size: 1.2rem;
 font-weight: 700;
 color: var(--primary-color);
 margin-top: 1rem;
}

/* --- Formulário de Contato --- */
.contact-section {
 background-color: var(--white);
}

.contact-form {
 max-width: 600px;
 margin: 2rem auto 0;
 background-color: var(--light-bg);
 padding: 2.5rem;
 border-radius: 10px;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 text-align: left;
}

.form-group {
 margin-bottom: 1.5rem;
}

.form-group label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 600;
 color: var(--secondary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
 width: 100%;
 padding: 0.8rem;
 border: 1px solid #ddd;
 border-radius: 5px;
 font-size: 1rem;
 color: var(--text-color);
}

.form-group textarea {
 resize: vertical;
}

.btn-submit {
 display: block;
 width: 100%;
 padding: 1rem;
 background-color: var(--primary-color);
 color: var(--white);
 border: none;
 border-radius: 5px;
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 transition: background-color 0.3s ease;
}

.btn-submit:hover {
 background-color: #e04a9e; /* Tom mais escuro do rosa */
}

---

/* --- Footer --- */
footer {
 background-color: #e04a9e;
 color: var(--white);
 padding: 2.5rem 0; /* Ajustado padding */
 font-size: 0.9rem;
 margin-top: 2rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: left; /* Alinha o título da seção à esquerda */
}

.footer-section ul {
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-section p i {
    color: var(--primary-color);
    font-size: 1rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ícone Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Cor do WhatsApp */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 2.5rem;
    line-height: 60px; /* Centraliza verticalmente o ícone */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Garante que fique acima de outros elementos */
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

---

/* --- Media Queries para Responsividade --- */
@media (max-width: 768px) {
 .navbar {
 flex-wrap: wrap;
 }

 .nav-list {
 display: none; /* Esconde a lista de navegação por padrão em telas menores */
 flex-direction: column;
 width: 100%;
 text-align: center;
 background-color: var(--secondary-color);
}

 .nav-list.active {
 display: flex; /* Mostra a lista quando a classe 'active' está presente */
}

 .nav-list li {
 margin: 1rem 0;
}

 .menu-toggle {
 display: flex; /* Mostra o ícone do hambúrguer */
 }

 .carousel-caption {
 font-size: 1.5rem;
 padding: 0.8rem 1.5rem;
 bottom: 10%;
 }

 .prev, .next {
 padding: 10px;
 font-size: 14px;
 margin-top: -15px;
 }

 .service-grid, .product-grid {
 grid-template-columns: 1fr; /* Uma coluna em telas menores */
 }

.contact-form {
 padding: 1.5rem;
 }

 section {
 padding: 2.5rem 1rem;
}

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 1rem 0;
        text-align: center;
        min-width: unset; /* Remove min-width para mobile */
    }

    .footer-section h3 {
        text-align: center; /* Centraliza o título da seção no mobile */
    }

    .footer-section p {
        justify-content: center; /* Centraliza ícones e texto no mobile */
    }
}

@media (max-width: 480px) {
 .logo {
 font-size: 1.5rem;
}

 .navbar {
 padding: 1rem;
 }

 .carousel-slide img {
 height: 300px; /* Altura menor para imagens em telas muito pequenas */
 }

 .carousel-caption {
 font-size: 1.2rem;
 padding: 0.5rem 1rem;
 }

 h2 {
 font-size: 1.8rem;
 }

.service-item, .product-item {
 padding: 1.2rem;
 }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        line-height: 50px;
    }
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    margin-top: 2rem;
}