* {
  margin: 0;
 padding: 0;
 box-sizing: border-box;
}


:root {
--primary-color: #ff6f91; 
 --secondary-color: #f7a8b8;
--text-dark: #2c3e50;
--text-light: #ecf0f1;
 --background-light: #fff5f7; 
--font-heading: "Montserrat", sans-serif;
--font-body: "Poppins", sans-serif;
}

body {
background: var(--background-light);
 color: var(--text-dark);
 line-height: 1.7;
 font-family: var(--font-body);
}


header {
 background: var(--primary-color); 
 
 padding: 15px 50px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 position: sticky;
 top: 0;
 z-index: 1000;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header h1 {
 font-size: 1.8rem;
 color: #fff;
 font-family: var(--font-heading); 
 font-weight: 700;
}
nav a {
margin-left: 30px; 
 text-decoration: none;
 font-weight: 500;
 color: #fff;
 position: relative;
 transition: 0.3s;
}

nav a:after {
 content: "";
 position: absolute;
 width: 0;
 height: 2px;
 display: block;
 margin-top: 5px;
 right: 0;
 background: #fff;
 transition: width 0.3s ease;
}
nav a:hover:after {
 width: 100%;
 left: 0;
}
nav a:hover {
 color: #fff;
}


.hero {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 80px 20px;
 background: url(https://img.freepik.com/fotos-premium/close-up-de-uma-planta-com-flores-rosas_1048944-16155458.jpg?semt=ais_incoming&w=740&q=80)
 no-repeat center/cover;
 color: #fff;
 text-align: center;
 min-height: 100vh; 
 position: relative;

}
.hero::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: rgba(0, 0, 0, 0.35); 
 z-index: 1;
}
.hero div {
 position: relative;
z-index: 2;
}
.hero h2 {
 font-size: 4rem; 
 max-width: 900px;
background: none; 
padding: 0;
border-radius: 0;
font-family: var(--font-heading);
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero p {
 margin-top: 20px;
 font-size: 1.4rem; 
 background: none; 
 padding: 0;
 border-radius: 0;
 font-weight: 300; 
}


.btn {
 display: inline-block;
 margin-top: 30px;
 padding: 15px 35px; 
 background: var(--primary-color);
 color: #fff;
 font-weight: 600;
 border-radius: 5px;
 text-decoration: none;
 transition: 0.3s ease-in-out;
 letter-spacing: 1px;
 text-transform: uppercase;
}
.btn:hover {
 background: #ff3f6c;
 box-shadow: 0 4px 15px rgba(255, 111, 145, 0.4);
}


section {
 /* Mudança: Removido o padding lateral para o carrossel ocupar toda a largura */
 padding: 80px 0; 
 text-align: center;
}
h3 {
 font-size: 2.5rem;
 margin-bottom: 50px;
 color: var(--primary-color);
 font-family: var(--font-heading);
 font-weight: 700;
 position: relative;
 /* Adicionado padding lateral para centralizar o H3 corretamente */
 padding: 0 50px;
}

h3:after {
 content: "";
 display: block;
 width: 60px;
 height: 3px;
 background: var(--secondary-color);
 margin: 10px auto 0;
 border-radius: 2px;
}

/
.carousel {
 
 display: flex;
 overflow-x: auto; 
 gap: 30px; 
 padding: 0 50px 30px; 
 justify-content: flex-start;
 

 scrollbar-width: none; 
 -ms-overflow-style: none; 
 scroll-snap-type: x mandatory;
}


.carousel::-webkit-scrollbar {
 display: none;
}
/* ---------------------------------------------------- */


.card {
 background: #fff; 
 border-radius: 10px; 
 box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08); 
 overflow: hidden;
 transition: 0.4s;
 border: 1px solid #f0f0f0; 
 
 min-width: 300px;

 scroll-snap-align: start; 
}
.card:hover {
 box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}
.card img {
 width: 100%;
 height: 250px; 
 object-fit:contain ;
}
.card h4 {
 margin: 30px 15px 10px;
 color: var(--text-dark); 
 font-size: 1.3rem;
 font-family: var(--font-heading);
}
.card p {
 margin: 0 20px 25px;
 font-size: 1rem;
 color: #777;
}


.contato {
 padding: 80px 50px; 
 background: var(--secondary-color);
}
.contato h3 {
 font-size: 2.5rem;
 margin-bottom: 40px;
 color: #fff; 
 padding: 0; 
}
.contato h3:after {
 background: #fff; 
}
.contato form {
 max-width: 500px;
 margin: auto;
 background: #fff;
 padding: 30px;
 border-radius: 15px;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contato input,
.contato textarea {
 width: 100%;
 padding: 15px;
 margin: 10px 0;
 border-radius: 8px;
 border: 1px solid #ddd;
 outline: none;
 font-size: 1rem;
 transition: border-color 0.3s;
}
.contato input:focus,
.contato textarea:focus {
 border-color: var(--primary-color);
}
.contato textarea {
 resize: vertical;
}
.contato button {
 background: var(--primary-color);
 border: none;
 padding: 15px 30px;
 border-radius: 5px;
 color: #fff;
 font-size: 1.1rem;
 cursor: pointer;
 transition: 0.3s;
 font-weight: 600;
 text-transform: uppercase;
 margin-top: 15px;
}
.contato button:hover {
 background: #ff3f6c;
}

/* Botão WhatsApp */
.btn-whatsapp {
 display: inline-block;
 margin-top: 35px;
 padding: 15px 30px;
 background: #25d366;
 color: #fff;
 font-weight: 600;
 border-radius: 5px;
 text-decoration: none;
 transition: 0.3s;
 box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
 letter-spacing: 1px;
}
.btn-whatsapp:hover {
 background: #1ebe5d;
 transform: translateY(-2px);
}


footer {
 background: var(--primary-color);
 text-align: center;
 padding: 25px;
 color: #fff;
 font-weight: 400;
}


@media (max-width: 900px) {
 .hero h2 {
 font-size: 3rem;
 }
 .hero p {
  font-size: 1.2rem;
 }
 section {
 padding: 60px 0; 
 }
 h3 {
 padding: 0 20px; 
 }
 .carousel {
 padding: 0 20px 30px;
 }
 .contato {
 padding: 60px 20px;
 }
}
@media (max-width: 768px) {
 header {
 padding: 15px 20px;
 }
 .hero h2 {
 font-size: 2.5rem;
 }
 nav { 
 display: none;
 }
 h3 {
  font-size: 2rem;
  margin-bottom: 30px;
 }
}