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

body{
  font-family:'Inter',sans-serif;
  background:#f4f7f5;
  color:#1e1e1e;
  -webkit-font-smoothing:antialiased;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.header{
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(8px);
  padding:18px 0;
  position:sticky;
  top:0;
  box-shadow:0 8px 25px rgba(0,0,0,0.04);
  z-index:100;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav a{
  margin:0 15px;
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:color .3s ease;
}

nav a:hover{
  color:#2e7d32;
}

.logo{
  font-weight:800;
  font-size:20px;
}

/* BUTTONS */
.btn-primary{
  background:#2e7d32;
  color:#fff;
  padding:14px 32px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:all .3s ease;
  display:inline-block;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(46,125,50,.3);
}

.btn-outline{
  border:2px solid #2e7d32;
  color:#2e7d32;
  padding:12px 28px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn-outline:hover{
  background:#2e7d32;
  color:#fff;
}

/* HERO */
.hero{
  padding:140px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:flex-start;
}

.badge{
  background:#e6f2ea;
  color:#2e7d32;
  padding:8px 16px;
  border-radius:25px;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:25px;
}

.hero h1{
  font-size:58px;
  font-weight:800;
  line-height:1.1;
  letter-spacing:-1px;
}

.hero h1 span{
  color:#2e7d32;
}

.hero p{
  margin:25px 0;
  color:#555;
  font-size:18px;
  line-height:1.6;
}

.hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:30px;
}

.hero-stats{
  display:flex;
  gap:30px;
  color:#2e7d32;
  font-weight:500;
  font-size:14px;
}

.hero-img img{
  width:100%;
  border-radius:25px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.horario-box{
  position:absolute;
  background:#fff;
  padding:18px 22px;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:-70px;
  margin-left:30px;
}

/* SECTION */
.section{
  padding:80px 0;
}

.center{
  text-align:center;
}

.section-badge{
  background:#e6f2ea;
  color:#2e7d32;
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
}

.subtitle{
  color:#666;
  margin:20px 0 60px;
}

/* SERVICES */
#servicos {
  padding-bottom:70px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.services-cta {
  margin-top: 60px;
  text-align: center;
}

.service-card{
  background:#fff;
  padding:40px;
  border-radius:22px;
  border:1px solid #e5e5e5;
  transition:.35s ease;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
  border-color:#2e7d32;
}

.icon-circle{
  width:60px;
  height:60px;
  background:#e8f1eb;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}

.icon-circle i{
  color:#2e7d32;
  width:26px;
  height:26px;
}

.service-card h3{
  font-size:18px;
  margin-bottom:12px;
  font-weight:700;
}

.service-card p{
  font-size:14px;
  color:#666;
  line-height:1.6;
}

/* ABOUT */
.about-section{
  padding:120px 0 60px;
  background:linear-gradient(180deg,#e8f1eb 0%, #f4f7f5 100%);
}

.about-wrapper{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:flex-start;
}

.about-image img{
  width:100%;
  border-radius:25px;
  box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

.about-content h2{
  font-size:48px;
  font-weight:800;
  line-height:1.1;
  margin:20px 0;
}

.about-content h2 span{
  color:#2e7d32;
}

.about-content p{
  font-size:18px;
  color:#555;
  margin-bottom:40px;
  line-height:1.6;
}

.about-highlights{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.highlight-card{
  background:#fff;
  padding:20px;
  border-radius:15px;
  display:flex;
  gap:15px;
  align-items:center;
  box-shadow:0 20px 50px rgba(0,0,0,0.05);
  transition:.3s;
}

.highlight-card:hover{
  transform:translateY(-5px);
}

.highlight-card i{
  color:#2e7d32;
  width:28px;
  height:28px;
}

/* CONTACT */
#contato{
  padding:80px 0 120px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.info-box{
  background:#f0f5f2;
  padding:18px;
  border-radius:12px;
  margin-bottom:15px;
  display:flex;
  gap:10px;
  align-items:center;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px;
  margin-bottom:15px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:14px;
}

.full{
  width:100%;
  border:none;
}

/* CONVENIOS */
.convenios-section{
  padding:100px 0;
}

.convenios-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
  margin-top:50px;
}

.convenio-card{
  background:#f4f7f5;
  padding:30px;
  border-radius:18px;
  font-weight:600;
  text-align:center;
  border:1px solid #e5e5e5;
  transition:.3s;
}

.convenio-card:hover{
  background:#2e7d32;
  color:#fff;
  transform:translateY(-6px);
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* FOOTER */
footer{
  background:linear-gradient(135deg,#165c27,#0f3e19);
  color:#fff;
  padding:80px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-grid a{
  display:block;
  color:#fff;
  text-decoration:none;
  margin-bottom:10px;
  opacity:0.9;
}

.footer-grid a:hover{
  opacity:1;
}

.copyright{
  text-align:center;
  margin-top:50px;
  font-size:14px;
  opacity:0.8;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25D366;
  color:#fff;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
  transition:.3s;
}

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

/* RESPONSIVE */
@media(max-width:1100px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .convenios-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:900px){
  .hero-grid,
  .about-wrapper,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero h1{
    font-size:42px;
  }

  .about-content h2{
    font-size:34px;
  }
}

@media(max-width:600px){
  .services-grid,
  .convenios-grid{
    grid-template-columns:1fr;
  }
}

.form-message {
  margin-top:15px;
  font-weight:500;
  font-size:14px;
}

.form-message.success {
  color:#2e7d32;
}

.form-message.error {
  color:#c62828;
}

