/* === Import === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* === Reset & Base === */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background: linear-gradient(to right, #E8FFB8 0%, #F6FFF0 45%, #F6FFF0 55%, #E8FFB8 100%);
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* === HERO === */
.hero {
  background-image: url('/assets/hero1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay {
  position: absolute;
  bottom: 4%;
  right: 2%;
  max-width: 500px;
  text-align: center;
}


.hero-logo {
  font-family: 'Playfair Display', serif;
  font-size: 4.3em;
  font-weight: 800;
  color: #33A33C;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6),
               2px 2px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 1.5px;
}

.hero-logo .linha-1 { display: inline-block; }
.hero-logo .linha-2 { display: inline-block; margin-left: 240px; }





/* === SERVICES === */
.services-modern {
  background-color: #4E3A0C;
  padding: 60px 40px 100px 40px;
  width: 100%;
  margin: 40px 0 0 0;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  filter: brightness(0.83) saturate(0.75);
}

.services-modern h2 {
  margin-top: 0;
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
  color: #E8FFB8;
  letter-spacing: 2px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background-color: #FAFBF7;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.07);
  padding: 30px 25px;
  width: 260px;
  text-align: center;
  border: 1px solid #DDE9D9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card .icon img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  transition: transform 0.3s ease;
}

.service-card:hover .icon img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.service-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
}



/* === CAROUSEL === */
.carousel-section {
  width: 100%;
  margin: 40px auto 0 auto;
  padding: 60px 40px;
  background-color: #919F72;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
  box-sizing: border-box;
}

.carousel-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8em;
  color: #4E3A0C;
  margin-bottom: 15px;
  margin-top: 15px;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  height: 85vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 2.5em;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 10;
  color: #4E3A0C;
  border-radius: 50%;
  transition: background 0.3s;
}

.carousel-btn:hover { background: rgba(255,255,255,0.95); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-section .view-gallery-btn {
  margin-top: 0;
  margin-bottom: 30px;
  background-color: #33A33C;
  color: white;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.carousel-section .view-gallery-btn:hover {
  background-color: #2a8c2f;
}

/* === ABOUT US === */
.about {
  max-width: 100%;
  padding: 60px 20px;
  background: radial-gradient(circle, #F6FFF0 40%, #E8FFB8 100%);
  border-top: 2px solid #A4B494;
  border-bottom: 2px solid #A4B494;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 2.4em;
  font-family: 'Playfair Display', serif;
  color: #4E3A0C;
  margin-bottom: 30px;
  margin-top: 0%;
}

.about p {
  font-size: 1.2em;
  color: #333;
  line-height: 1.6;
}

/* === CONTACT === */
.contact {
  text-align: center;
  padding: 30px 20px;
  background-color: #4E3A0C;
  filter: brightness(0.83) saturate(0.75);
}

.contact h2 {
  font-size: 2.4em;
  font-family: 'Playfair Display', serif;
  color: #E8FFB8;
  margin-bottom: 30px;
  margin-top: 30px;
}

.contact p {
  font-size: 1.2em;
  color: #DDE9D9;
  margin-bottom: 30px;
}

.quote-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-form input,
.quote-form textarea {
  padding: 14px 16px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: border 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border: 1px solid #33A33C;
  outline: none;
}

.quote-form .btn {
  align-self: center;
  padding: 12px 28px;
  background-color: #33A33C;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form .btn:hover {
  background-color: #2a8c2f;
}

/* === FOOTER === */
.footer {
  background-color: #f2f2f2;
  color: #2e2e2e;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 10px 0;
  border-top: 1px solid #ccc;
}

.footer-container {
  width: 100%;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}

.footer-left,
.footer-right {
  width: 280px;
  display: flex;
  flex-direction: column;
}

.footer-left { align-items: flex-start; text-align: center; }
.footer-right { align-items: center; text-align: center; }

.footer-logo { width: 180px; margin: 0 0 20px 0; }

.footer-left p, .footer-right p {
  font-size: 0.95rem; color: #555; margin: 4px 0; line-height: 1.4;
}

.footer-right h4 {
  font-size: 1.1rem;
  color: #8dc63f;
  margin: 0 0 10px 0;
  padding-bottom: 5px;
  border-bottom: 2px solid #8dc63f;
  display: inline-block;
}

.footer-right a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #5a9e2e;
  text-decoration: underline;
}

/* === HEADER === */
.site-header {
  background-color: #E8FFB8;
  border-bottom: 3px solid rgba(51, 163, 60, 0.8);
  padding: 20px 60px;
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
}

.header-container {
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.logo-area img { height: 60px; width: auto; }

.logo-area .site-name {
  font-size: 1.8em;
  font-weight: bold;
  color: #33A33C;
  font-family: 'Georgia', serif;
}

.menu {
  display: flex;
  gap: 30px;
  margin-right: 20px;
  justify-content: flex-end;
}

.menu a {
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 600;
  color: #7A6317;
  position: relative;
  transition: color 0.3s ease;
}

.menu a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background-color: #4E3A0C;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px; left: 0;
}

.menu a:hover { color: #4E3A0C; }
.menu a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 22px;
  background: none; border: none;
  cursor: pointer; z-index: 2000;
}

.menu-toggle span {
  display: block; height: 3px; width: 100%;
  background: #7A6317; border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-mobile {
  display: none;
  position: absolute;
  top: 70px; right: 20px;
  background: #E8FFB8;
  border: 2px solid #7A6317;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-direction: column; align-items: center;
}

.menu-mobile a {
  padding: 15px 20px;
  text-decoration: none;
  color: #7A6317;
  font-weight: 600;
}

.menu-mobile a:hover {
  color: #4E3A0C;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.menu-mobile.show {
  display: flex; animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === WHATSAPP === */
.whatsapp-float {
  position: fixed; bottom: 20px; right: 20px;
  z-index: 999; width: 60px; height: 60px;
}

.whatsapp-float img {
  width: 100%; height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover { transform: scale(1.1); }

/* === RESPONSIVO === */
@media screen and (max-width: 768px) {
   .hero {
    background-image: url('/assets/hero1-mobile1.jpg');
    height: 60vh;
    display: flex; 
    align-items: center; 
    text-align: center;
    position: relative;
    justify-content: center;
  }
  .hero .overlay {
   position: absolute;
   bottom: 4%;   
   right: 2%;    
   max-width: 90%;
   text-align: center;
   margin: 0;
  }
  .hero-logo { font-size: 2.5em; margin: 0; }
  .hero-logo .linha-2 { margin-left: 110px; display: inline-block; }
  
  .services-modern { padding: 40px 20px 80px 20px; }
  .services-container { flex-direction: column; align-items: center; }
  .service-card { width: 90%; max-width: 300px; }

  .carousel-section { height: auto; padding: 20px 20px;}
  .carousel-btn { font-size: 1.8em; padding: 8px 14px; margin-top: 0;}
  .carousel-section h2 { margin-bottom: 0 0 20px 0; }
  

  .carousel-container {
    width: 100%;
    height: auto;   
    border-radius: 12px;

  }
  .carousel-track img {
  height: auto;
  aspect-ratio: 16/12;  
  width: 100%;
  }

  .contact {
  padding: 5px 30px;
  
  }
   
  .menu { display: none; }
  .menu-toggle { display: flex; }
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .footer-left, .footer-right {
    width: 100%;
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }
}



