@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
      --green: #1F5C4A;
      --green-dark: #174437;
      --orange: #F28C28;
      --light: #f5f5f5;
      --gray: #777;
  }

  * {
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Montserrat', sans-serif;
  }

  body {
      background:#fff;
      color:#333;
  }
.contact-section{
    padding:120px 0;
    background:#f4f5f5;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* TÍTULO */

.contact-header{
    text-align:center;
    margin-bottom:70px;
}

.contact-header h2{
    font-size:48px;
    font-weight:700;
    color:#143d35;
    margin-bottom:15px;
}

.contact-header p{
    font-size:18px;
    color:#6f767a;
}

/* GRID */

.contact-grid{
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    gap:80px;
}

/* FORM */

.contact-form label{
    display:block;
    font-size:14px;
    margin-bottom:8px;
    color:#143d35;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border-radius:10px;
    border:1px solid #e3e6e5;
    margin-bottom:25px;
    font-size:14px;
    outline:none;
    transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#F28C28;
}

.contact-form textarea{
    min-height:140px;
    resize:none;
}

/* BOTÃO */

.btn-contact{
    width:100%;
    background:#F28C28;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:10px;
    font-weight:600;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.btn-contact:hover{
    background:#e57d15;
}
 .features{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:45px 30px;
}

.feature-item{
    text-align:center;
}

.feature-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    background:#F28C28;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px auto;
}

.feature-icon i{
    font-size:28px;
    color:#fff;
}

.feature-item span{
    font-size:15px;
    color:#143d35;
    font-weight:500;
}
@media(max-width:1024px){
    .features{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .features{
        grid-template-columns:1fr;
    }
}
.contact-events{
    padding:120px 0;
    background:#f4f5f5;
}

.contact-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:flex-start;
}

.contact-info h2{
    font-size:40px;
    margin-bottom:20px;
    color:#143d35;
}

.contact-info p{
    font-size:16px;
    margin-bottom:10px;
    color:#6f767a;
}

.contact-form-events{
    display:flex;
    flex-direction:column;
}

.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

/* ACCORDION */

.accordion{
margin-bottom:20px;
border-radius:6px;
overflow:hidden;
border:1px solid #ddd;
}

.accordion-header{
background:#e6e6e6;
padding:14px 20px;
cursor:pointer;
font-weight:600;
font-size:14px;
display:flex;
justify-content:space-between;
align-items:center;
transition:.3s;
}

.accordion-header:hover{
background:#dcdcdc;
}

.accordion-content{
max-height:0;
overflow:hidden;
background:#fff;
transition:max-height .4s ease;
padding:0 20px;
}

.accordion.active .accordion-content{
padding:20px;
max-height:500px;
}

/* CARD EMPRESA */

.company-card{
background:#f9f9f9;
border-radius:10px;
padding:25px;
margin-bottom:20px;
display:flex;
align-items:center;
gap:25px;
}

.company-logo{
width:100px;
height:100px;
background:#fff;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
color:#143d35;
border:1px solid #eee;
}

.company-info h4{
margin-bottom:8px;
color:#143d35;
}

.company-info p{
font-size:14px;
color:#6f767a;
}
@media(max-width:768px){
.company-card{
flex-direction:column;
align-items:flex-start;
}
}


.job-accordion{
margin-bottom:18px;
border-radius:10px;
overflow:hidden;
border:1px solid #e3e6e5;
transition:.3s;
}

.job-header{
background:#f0f3f2;
padding:18px 25px;
cursor:pointer;
font-weight:600;
display:flex;
justify-content:space-between;
align-items:center;
transition:.3s;
}

.job-header:hover{
background:#e4e9e7;
}

.job-header span{
color:var(--orange);
font-size:14px;
}

.job-content{
max-height:0;
overflow:hidden;
transition:max-height .5s ease;
background:#fff;
padding:0 25px;
}
.jobs-section{
padding:120px 0;
background:#f4f5f5;
}

.jobs-header{
text-align:center;
margin-bottom:60px;
}

.jobs-tag{
font-size:13px;
letter-spacing:3px;
color:#1F5C4A;
font-weight:600;
display:inline-block;
margin-bottom:15px;
}

.jobs-header h2{
font-size:36px;
color:#143d35;
margin-bottom:10px;
}

.jobs-header p{
color:#6f767a;
}

.job-card{
background:#fff;
border-radius:14px;
margin-bottom:20px;
overflow:hidden;
border-left:6px solid #1F5C4A;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:.3s;
}

.job-card:hover{
transform:translateY(-4px);
box-shadow:0 20px 45px rgba(0,0,0,0.08);
}
.blog-layout{
display:grid;
grid-template-columns: 2fr 1fr;
gap:60px;
padding:80px 0;
}
.sidebar-share{
margin-top:40px;
padding-top:30px;
border-top:1px solid #eee;
text-align:center;
}

.sidebar-share h3{
font-size:18px;
margin-bottom:20px;
letter-spacing:1px;
text-transform:uppercase;
}

.share-icons{
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
}

.share-icons a{
width:42px;
height:42px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:16px;
transition:0.3s;
}

.share-icons a:hover{
transform:translateY(-3px);
}

/* CORES */

.share-facebook{background:#3b5998;}
.share-x{background:#000;}
.share-linkedin{background:#0077b5;}
.share-whatsapp{background:#25d366;}
.share-telegram{background:#2ca5e0;}
.blog-main{
max-width:100%;
}

.blog-cover{
width:100%;
border-radius:10px;
margin-bottom:30px;
}

.blog-sidebar{
border-left:1px solid #eee;
padding-left:30px;
}

.blog-sidebar h3{
margin-bottom:20px;
font-size:20px;
}

.sidebar-post{
display:flex;
gap:15px;
margin-bottom:20px;
text-decoration:none;
color:#333;
}

.sidebar-post img{
width:90px;
height:70px;
object-fit:cover;
border-radius:6px;
}

.sidebar-post h4{
font-size:15px;
margin:0;
}

.sidebar-post span{
font-size:12px;
opacity:.7;
}
.blog-article-hero{
position:relative;
height:420px;
overflow:hidden;
}

.blog-article-hero img{
width:100%;
height:100%;
object-fit:cover;
}

.article-overlay{
position:absolute;
bottom:60px;
left:50%;
transform:translateX(-50%);
color:#fff;
text-align:center;
max-width:800px;
}

.article-overlay h1{
font-size:42px;
margin-bottom:10px;
}

.blog-article{
padding:80px 0;
}

.article-content{
max-width:900px;
margin:auto;
font-size:18px;
line-height:1.7;
}

.related-posts{
padding:80px 0;
background:#f7f7f7;
}
.job-card-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 30px;
cursor:pointer;
}

.job-left{
display:flex;
align-items:center;
gap:18px;
}
.blog-pagination{
display:flex;
justify-content:center;
align-items:center;
gap:10px;
margin-top:40px;
flex-wrap:wrap;
}

.blog-pagination a{
padding:10px 14px;
border-radius:8px;
background:#eee;
color:#333;
text-decoration:none;
font-weight:500;
transition:.2s;
}

.blog-pagination a:hover{
background:#ddd;
}

.blog-pagination a.active{
background:#1f5d46;
color:#fff;
}

.blog-pagination .dots{
padding:10px;
color:#999;
}
.blog-hero{
height:45vh;
background:url('https://images.unsplash.com/photo-1492724441997-5dc865305da7') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
text-align:center;
color:#fff;
}

.blog-hero::after{
content:'';
position:absolute;
inset:0;
background:rgba(22,75,60,.75);
}

.blog-hero-content{
position:relative;
z-index:2;
}

.blog-hero h1{
font-size:48px;
font-weight:800;
}

.blog-hero p{
margin-top:10px;
opacity:.9;
}

/* FILTRO */

.blog-toolbar{
display:flex;
justify-content:space-between;
align-items:center;
margin:70px 0 40px;
flex-wrap:wrap;
gap:20px;
}

.blog-categories button{
background:#e7f1ed;
border:none;
padding:10px 18px;
border-radius:30px;
margin-right:10px;
cursor:pointer;
font-weight:500;
transition:.3s;
}

.blog-categories button:hover,
.blog-categories button.active{
background:var(--green);
color:#fff;
}

.blog-search input{
padding:12px 18px;
border-radius:8px;
border:1px solid #ddd;
outline:none;
}

/* GRID */

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
margin-bottom:80px;
}

.blog-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:.3s;
display:flex;
flex-direction:column;
}

.blog-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(0,0,0,0.1);
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-content{
padding:25px;
flex:1;
display:flex;
flex-direction:column;
}

.blog-category{
font-size:12px;
font-weight:600;
color:var(--orange);
letter-spacing:1px;
margin-bottom:10px;
}

.blog-content h3{
color:var(--green-dark);
margin-bottom:12px;
}

.blog-content p{
color:var(--gray);
font-size:14px;
line-height:1.6;
margin-bottom:20px;
}

.blog-content a{
color:var(--orange);
font-weight:600;
text-decoration:none;
}

.blog-content a:hover{
text-decoration:underline;
}

/* PAGINAÇÃO */

.blog-pagination{
text-align:center;
margin-bottom:100px;
}

.blog-pagination button{
background:#f0f3f2;
border:none;
margin:0 5px;
padding:10px 15px;
border-radius:8px;
cursor:pointer;
transition:.3s;
}

.blog-pagination button:hover,
.blog-pagination button.active{
background:var(--green);
color:#fff;
}

/* RESPONSIVO */

@media(max-width:992px){
.blog-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.blog-grid{
grid-template-columns:1fr;
}

.blog-hero h1{
font-size:32px;
}
}
.job-icon{
width:50px;
height:50px;
background:#e7f1ed;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
font-size:20px;
}

.job-left h3{
margin-bottom:5px;
color:#143d35;
}

.job-left span{
font-size:14px;
color:#6f767a;
}

.job-right{
display:flex;
align-items:center;
gap:20px;
}

.job-badge{
background:#F28C28;
color:#fff;
padding:6px 14px;
border-radius:20px;
font-size:12px;
font-weight:600;
}

.job-toggle{
font-size:22px;
font-weight:700;
color:#1F5C4A;
transition:.3s;
}

.job-card.active .job-toggle{
transform:rotate(45deg);
}

.job-card-content{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
padding:0 30px;
}

.job-card.active .job-card-content{
padding:0 30px 25px;
max-height:300px;
}

.job-card-content p{
color:#6f767a;
margin-bottom:10px;
line-height:1.6;
}
.job-accordion.active .job-content{
padding:25px;
max-height:1000px;
}

.job-content h4{
margin-bottom:15px;
color:#143d35;
}

.job-content p{
margin-bottom:10px;
color:var(--gray);
font-size:15px;
line-height:1.7;
}

/* CTA FINAL */

.jobs-cta{
margin-top:100px;
padding:80px 0;
background:linear-gradient(180deg,#f4f5f5 0%, #ffffff 100%);
text-align:center;
}

.jobs-cta h3{
font-size:26px;
color:#143d35;
margin-bottom:15px;
}

.jobs-cta p{
color:var(--gray);
margin-bottom:25px;
}
.contact-form-events input,
.contact-form-events textarea{
    width:100%;
    padding:14px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:14px;
    outline:none;
    transition:0.3s;
}

.contact-form-events textarea{
    min-height:120px;
    resize:none;
    margin-bottom:20px;
}

.contact-form-events input:focus,
.contact-form-events textarea:focus{
    border-color:#F28C28;
}

.contact-form-events button{
    background:#F28C28;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-form-events button:hover{
    background:#e57d15;
    transform:translateY(-2px);
}

/* RESPONSIVO */

@media(max-width:900px){
    .contact-box{
        grid-template-columns:1fr;
        gap:40px;
    }

    .form-row{
        flex-direction:column;
    }
}

.icon-box{
    width:60px;
    height:60px;
    background:#e8efec;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    margin:0; /* REMOVE AUTO */
}

.icon-box i{
    color:#143d35;
    font-size:18px;
}
  
.social-contact{
    margin-top:30px;
    display:flex;
    flex-direction:row; /* força horizontal */
    align-items:center;
    justify-content:flex-start;
    gap:18px;
}

.social-contact a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#e8efec;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#143d35;
    font-size:16px;
    transition:0.3s;
    flex-shrink:0; /* impede quebra */
}

.social-contact a:hover{
    background:#F28C28;
    color:#fff;
    transform:translateY(-3px);
}

/* RESPONSIVO */

@media(max-width:992px){
    .contact-grid{
        grid-template-columns:1fr;
        gap:60px;
    }
}

@media(max-width:768px){
    .contact-header h2{
        font-size:36px;
    }
}
  .container {
      width:90%;
      max-width:1200px;
      margin:auto;
  }

  header {
      background:var(--green);
      padding:18px 0;
      position:fixed;
      width:100%;
      top:0;
      z-index:1000;
  }

  nav {
      display:flex;
      justify-content:space-between;
      align-items:center;
  }
  .social-icons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-icons a {
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #F28C28;
    transform: translateY(-2px);
}
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
  .logo {
      color:#fff;
      font-weight:600;
      font-size:20px;
  }

  .logo span {
      color:var(--orange);
  }

  nav ul {
      list-style:none;
      display:flex;
      gap:30px;
  }

  nav ul li a {
      text-decoration:none;
      color:#fff;
      font-size:14px;
      transition:0.3s;
  }

  nav ul li a:hover {
      color:var(--orange);
  }

  .btn-primary {
      background:var(--orange);
      color:#fff;
      padding:10px 18px;
      border-radius:6px;
      text-decoration:none;
      font-size:14px;
      transition:0.3s;
  }

  .btn-primary:hover {
      opacity:0.85;
  }/* Importante: usar peso mais elegante */
 
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(22, 75, 60, 0.65),
        rgba(22, 75, 60, 0.85)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    color: #fff;
    margin-top: 55px;
}

/* Linha superior */

.hero-top {
    display: block;
    color: #F28C28;
    letter-spacing: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Título principal */

.hero h1 {
    font-size: 90px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero h1 span {
    display: block;
    color: #F28C28;
}

/* Texto */

.hero p {
    font-size: 20px;
    font-weight: 400;
    max-width: 760px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* Botão */

.btn-hero {
    display: inline-block;
    background: #F28C28;
    color: #fff;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn-hero:hover {
    background: #e57d15;
    transform: translateY(-2px);
}

/* Scroll Indicator */

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 25px;
    margin: 60px auto 0;
    position: relative;
}
.page-hero{
  height:60vh;
  background:url('https://images.unsplash.com/photo-1497366216548-37526070297c') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  text-align:center;
  color:#fff;
}

.page-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(22,75,60,0.75);
}

.page-hero-content{
  position:relative;
  z-index:2;
}

.page-hero h1{
  font-size:60px;
  font-weight:800;
  letter-spacing:2px;
}

.page-hero p{
  margin-top:15px;
  font-size:18px;
  opacity:.9;
}

/* SEÇÕES */

section{
  padding:120px 0;
}

.section-light{
  background:var(--light);
}

/* GRID */

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
 
/* MISSÃO VISÃO VALORES */

.mvv-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;
}

.mvv-card{
  background:#fff;
  padding:50px 40px;
  border-radius:22px;
  border:1px solid #e9eceb;
  box-shadow:0 2px 6px rgba(0,0,0,0.02);
  transition:.4s;
}

.mvv-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.mvv-card h3{
  margin-bottom:15px;
  color:#143d35;
  font-size:20px;
}

/* LINHA DO TEMPO */

.timeline{
  position:relative;
  margin-top:60px;
}

.timeline::before{
  content:'';
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:100%;
  background:#e3e6e5;
}

.timeline-item{
  width:50%;
  padding:30px 40px;
  position:relative;
}

.timeline-item:nth-child(odd){
  left:0;
  text-align:right;
}

.timeline-item:nth-child(even){
  left:50%;
}

.timeline-item::before{
  content:'';
  position:absolute;
  top:35px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--orange);
}

.timeline-item:nth-child(odd)::before{
  right:-8px;
}

.timeline-item:nth-child(even)::before{
  left:-8px;
}

.timeline-item h4{
  margin-bottom:10px;
  color:#143d35;
}

/* CTA FINAL */

.cta{
  background:var(--green);
  color:#fff;
  text-align:center;
  padding:100px 20px;
}

.cta h2{
  color:#fff;
  margin-bottom:25px;
} 

/* ANIMAÇÃO */

.reveal{
  opacity:0;
  transform:translateY(60px);
  transition:1s cubic-bezier(0.22,1,0.36,1);
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVO */

@media(max-width:992px){
  .grid-2{
    grid-template-columns:1fr;
  }
  .mvv-grid{
    grid-template-columns:1fr;
  }
  .timeline::before{
    left:8px;
  }
  .timeline-item{
    width:100%;
    left:0 !important;
    text-align:left !important;
    padding-left:40px;
  }
  .timeline-item::before{
    left:0 !important;
  }
}
.scroll-indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #F28C28;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.6s infinite;
}

@keyframes scroll {
    0% { opacity: 0; top: 10px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 30px; }
}

/* RESPONSIVO */

@media(max-width: 1024px){
    .hero h1 {
        font-size: 60px;
    }
}

@media(max-width: 768px){
    .hero h1 {
        font-size: 42px;
    }
    .hero-top {
        letter-spacing: 3px;
        font-size: 12px;
    }
    .hero p {
        font-size: 16px;
    }
}
  /* SECTION */

  section {
      padding:100px 0;
  }

  .section-light {
      background:var(--light);
  }

  .grid-2 {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:50px;
      align-items:center;
  }

  img.responsive {
      width:100%;
      border-radius:12px;
  }

  h2 {
      font-size:45px;
      margin-bottom:20px;
  }

  h2 span {
      color:var(--orange);
  }
.blog-section {
    padding: 120px 0;
    background: #f4f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

/* CARD */

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e9eceb;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* IMAGEM */

.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* CONTEÚDO */

.blog-content {
    padding: 35px 32px 40px 32px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #163c33;
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 15px;
    color: #6f767a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-content a {
    font-size: 14px;
    font-weight: 600;
    color: #F28C28;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-content a:hover {
    letter-spacing: 1px;
}

/* RESPONSIVO */

@media(max-width: 1024px){
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px){
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.diferenciais {
    padding: 120px 0px 120px 0px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.card-unique {
    background: #ffffff;
    padding: 55px 45px;
    border-radius: 22px;
    border: 1px solid #e9eceb;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    min-height: 260px; /* força mesma altura */
}

/* CARD */

.card-unique {
    background: #ffffff;
    padding: 55px 45px;
    border-radius: 22px;
    border: 1px solid #e9eceb;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    margin: auto;
}
.card-unique .icon-box{
    width: 72px;
    height: 72px;
    background: #e8efec;
    border-radius: 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 25px;
}
.card-unique:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.05);
    border-color: #e3e6e5;
}
.card-unique h4{
    font-size:18px;
    font-weight:600;
    color:#143d35;
    margin-bottom:10px;
}

.card-unique p{
    font-size:15px;
    color:#6f767a;
    line-height:1.6;
}
/* ÍCONE */

.contact-info-item{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:45px;
}

.contact-info-item h4{
    font-size:16px;
    font-weight:600;
    color:#143d35;
    margin:0 0 4px 0;
}

.contact-info-item p{
    margin:0;
    font-size:15px;
    color:#6f767a;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    stroke: #1f4e43;
}
 

/* RESPONSIVO */

@media(max-width: 1024px){
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px){
    .cards-grid {
        grid-template-columns: 1fr;
    }
}
.btn-premium {
    display: inline-block;
    background: #F28C28;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

/* Hover elegante */
.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.35);
    background: #e57d15;
}
.btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    transition: 0.6s;
}

.btn-premium:hover::after {
    left: 130%;
}
  /* NUMBERS */

  .numbers {
      background:var(--green);
      color:#fff;
      text-align:center;
  }

  .numbers .grid-4 {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:40px;
  }

  .numbers h3 {
      font-size:56px;
      color:var(--orange);
  }

  .numbers p {
      margin-top:8px;
  }

  /* CARDS */

  .cards {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:30px;
  }

  .card {
      background:#fff;
      padding:30px;
      border-radius:12px;
      box-shadow:0 5px 20px rgba(0,0,0,0.05);
      text-align:center;
      transition:0.3s;
  }

  .card:hover {
      transform:translateY(-5px);
  }

  .card h4 {
      margin-bottom:10px;
  }

  /* BLOG */

  .blog-card img {
      border-radius:12px 12px 0 0;
  }

  .blog-card {
      overflow:hidden;
      background:#fff;
      border-radius:12px;
      box-shadow:0 5px 20px rgba(0,0,0,0.05);
  }

  .blog-content {
      padding:20px;
  }

  
  footer {
      background:var(--green-dark);
      color:#fff;
      text-align:center;
      padding:30px 0;
  }

  /* RESPONSIVE */

  @media(max-width:900px){
      .grid-2, .cards, .numbers .grid-4 {
          grid-template-columns:1fr;
      }
      .hero h1 {
          font-size:34px;
      }
      nav ul {
          display:none;
      }
  }