
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-bottom: 0;
    padding-top: 0;
    margin: 0;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s linear;
    font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
    background-color: #ffffff;
    color: #2c3e50;
    line-height: 1.6;
}
.logo {
  display: flex;
  align-items: center;
  
}

.logo img {
  max-width: 200px;
  height: auto;
  display: flex;
}

.header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
}

section{
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    background-color: #FFF;
}

.header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    max-width: 100%;
    margin: 0 auto;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.navbar a {
  position: relative;
  margin: 0 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #2c3e50;
  text-decoration: none;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.navbar a:hover {
  color: #2d7a4f; 
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
   background-color: #2d7a4f;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
  padding-left: 2rem;
  border-left: 1px solid #e8e8e8;
}

.header-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding: 0;
  border-radius: 50%;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.header-social .social-icon:hover {
  background-color: #e8e8e8;
  transform: translateY(-2px);
}

.header-social .social-icon svg {
  width: 20px;
  height: 20px;
  fill: #2c3e50;
  transition: fill 0.3s ease;
}

.header-social .social-icon:hover svg {
  fill: #2d7a4f;
}
.hero {
  position: relative; 
  height: 600px; 
  overflow: hidden;
  z-index: 0; /* Garante que o vídeo fique atrás do conteúdo subsequente */
}


.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px 8%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content h3:first-child {
  padding-top: 20%;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #7dcea0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

.hero-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 25px 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.hero-content h3:last-child {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 30px;
  color: #7dcea0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  text-decoration: none;
}
/* SOBRE */
.sobre {
  position: relative;
  z-index: 1;
  padding: 90px 8%;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.sobre h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.sobre h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.sobre > p {
  font-size: 1.15rem;
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sobre-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(6, 161, 125, 0.08);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
}

.sobre-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.sobre-card:hover::before {
  transform: scaleX(1);
}

.sobre-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(6, 161, 125, 0.15);
}

.sobre-card h3 {
  font-size: 1.4rem;
  color: #2d7a4f;
  margin-bottom: 18px;
  font-weight: 600;
}

.sobre-card p {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.7;
}

/* NOSSA LOGÍSTICA */
.logistica-section {
  padding: 90px 8%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.logistica-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.logistica-mapa {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logistica-mapa img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logistica-mapa img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.logistica-content h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.logistica-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.logistica-texto {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.logistica-cidades {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: start;
}

.estado-grupo {
  background: #ffffff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 3px solid #1a4d2e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.estado-grupo:nth-child(1) {
  margin-top: 0;
}

.estado-grupo:nth-child(2) {
  margin-top: 30px;
}

.estado-grupo:nth-child(3) {
  margin-top: 60px;
}

.estado-grupo:nth-child(4) {
  margin-top: 90px;
}

.estado-grupo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.estado-grupo h4 {
  font-size: 0.95rem;
  color: #1a4d2e;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.estado-grupo ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.estado-grupo ul li {
  font-size: 0.8rem;
  color: #555;
  padding: 2px 0;
  position: relative;
  padding-left: 12px;
  white-space: nowrap;
}

.estado-grupo ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2d7a4f;
  font-weight: bold;
}

/* SERVIÇOS */
.servicos {
  padding: 90px 8%;
  background-color: #ffffff;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.servicos h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.servicos h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(6, 161, 125, 0.15);
}

.card h3 {
  font-size: 1.3rem;
  color: #2d7a4f;
  margin-bottom: 15px;
  font-weight: 600;
}

.card p {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.7;
}

/* PARCEIROS */
.parceiros {
  padding: 90px 8%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.parceiros h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.parceiros h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.parceiros p,
.parceiros-subtitle {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-top: 30px;
  margin-bottom: 40px;
}

.industrias-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-top: 60px;
  margin-bottom: 15px;
  font-weight: 600;
}

.industrias-subtitle {
  font-size: 1rem;
  color: #5a6c7d;
  margin-bottom: 40px;
}

/* Carrossel de Logos */
.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 60px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease;
  align-items: center;
}

.carousel-slide {
  min-width: calc(33.333% - 27px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  height: 150px;
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6, 161, 125, 0.15);
}

.carousel-slide img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.carousel-slide:hover img {
  filter: grayscale(0%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(6, 161, 125, 0.3);
  z-index: 10;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(6, 161, 125, 0.4);
}

.carousel-prev,
.carousel-prev-hospital,
.carousel-prev-industria {
  left: 0;
}

.carousel-next,
.carousel-next-hospital,
.carousel-next-industria {
  right: 0;
}

/* Carrossel de Hospitais */
.carousel-hospitais {
  margin-bottom: 80px;
}

.carousel-hospitais .carousel-slide {
  background: #ffffff;
  padding: 30px;
  border: 2px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}

.carousel-hospitais .carousel-slide img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-hospitais .carousel-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #2d7a4f;
  cursor: pointer;
  padding: 10px;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* CONTATO */
.contato {
  padding: 90px 8%;
  background-color: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
}

.contato h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.contato h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.contato > p {
  text-align: center;
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 50px;
}

.contato-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 40px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(6, 161, 125, 0.1);
}

.info-item h3 {
  font-size: 1.2rem;
  color: #2d7a4f;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-item p {
  font-size: 0.95rem;
  color: #5a6c7d;
  line-height: 1.7;
  margin: 0;
}

.contato-form {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 5px 20px rgba(6, 161, 125, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1e7e0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  color: #2c3e50;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2d7a4f;
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 161, 125, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: #ffffff;
  padding: 50px 8%;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-section h3 {
  color: #2d7a4f;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  color: #b8c5d0;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 8px 0;
}

.footer-section a {
  display: block;
  color: #b8c5d0;
  text-decoration: none;
  margin: 10px 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #2d7a4f;
  padding-left: 5px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: #b8c5d0;
  transition: fill 0.3s ease;
  flex-shrink: 0;
}

.footer-social-link:hover svg {
  fill: #2d7a4f;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom p {
  color: #b8c5d0;
  font-size: 0.9rem;
  margin: 0;
}

/* PÁGINA SOBRE */
.hero-sobre {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-sobre .hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  top: 0;
  transform: none;
}

.hero-sobre h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-sobre p {
  font-size: 1.3rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.sobre-detalhada {
  padding: 90px 8%;
  background-color: #ffffff;
}

.container-sobre {
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-detalhada h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
}

.sobre-detalhada h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.intro-text {
  font-size: 1.2rem;
  color: #5a6c7d;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.historia-content {
  margin-top: 40px;
}

.historia-texto p {
  font-size: 1.1rem;
  color: #5a6c7d;
  line-height: 1.9;
  margin-bottom: 25px;
  text-align: justify;
}

.historia-texto strong {
  color: #2d7a4f;
  font-weight: 600;
}

/* MISSÃO, VISÃO E VALORES */
.mvv-section {
  padding: 90px 8%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  text-align: center;
}

.mvv-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.mvv-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.mvv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mvv-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 50px 35px;
  box-shadow: 0 5px 20px rgba(6, 161, 125, 0.1);
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  text-align: left;
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(6, 161, 125, 0.2);
}

.mvv-icon {
  font-size: 3rem;
  margin-bottom: 25px;
}

.mvv-card h3 {
  font-size: 1.6rem;
  color: #2d7a4f;
  margin-bottom: 20px;
  font-weight: 600;
}

.mvv-card p {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.8;
}

.mvv-card ul {
  list-style: none;
  padding: 0;
}

.mvv-card ul li {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 2;
  padding-left: 25px;
  position: relative;
}

.mvv-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d7a4f;
  font-weight: bold;
}

/* DIFERENCIAIS */
.diferenciais-section {
  padding: 90px 8%;
  background-color: #ffffff;
}

.diferenciais-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
}

.diferenciais-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.subtitulo-secao {
  text-align: center;
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 60px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.diferencial-item {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 40px 35px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.diferencial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #1a4d2e, #2d7a4f);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.diferencial-item:hover::before {
  transform: scaleY(1);
}

.diferencial-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(6, 161, 125, 0.15);
}

.diferencial-numero {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d7a4f;
  opacity: 0.3;
  margin-bottom: 15px;
}

.diferencial-item h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.diferencial-item p {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.8;
}

/* QUALIDADE */
.qualidade-section {
  padding: 90px 8%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.qualidade-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
}

.qualidade-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.qualidade-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.qualidade-card {
  background-color: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(6, 161, 125, 0.1);
  border: 1px solid #e8e8e8;
  text-align: center;
  transition: all 0.3s ease;
}

.qualidade-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(6, 161, 125, 0.2);
}

.qualidade-card h3 {
  font-size: 1.2rem;
  color: #2d7a4f;
  margin-bottom: 12px;
  font-weight: 600;
}

.qualidade-card p {
  font-size: 0.95rem;
  color: #5a6c7d;
  line-height: 1.6;
}

.btn-documento {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn-documento:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6, 161, 125, 0.35);
}

/* CTA SECTION */
.cta-section {
  padding: 80px 8%;
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.btn-cta {
  display: inline-block;
  padding: 18px 50px;
  background-color: white;
  color: #2d7a4f;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-cta-secondary:hover {
  background-color: white;
  color: #2d7a4f;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PÁGINA CONTATO */
.hero-contato {
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-contato .hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  top: 0;
  transform: none;
}

.hero-contato h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-contato p {
  font-size: 1.3rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.info-contato-section {
  padding: 90px 8%;
  background-color: #ffffff;
}

.info-contato-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
}

.info-contato-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(6, 161, 125, 0.15);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d7a4f;
  opacity: 0.85;
  font-weight: 300;
}

.info-card h3 {
  font-size: 1.3rem;
  color: #2d7a4f;
  margin-bottom: 15px;
  font-weight: 600;
}

.info-card p {
  font-size: 1rem;
  color: #2c3e50;
  margin: 5px 0;
  font-weight: 500;
}

.info-card small {
  font-size: 0.85rem;
  color: #5a6c7d;
  display: block;
  margin-top: 15px;
  line-height: 1.6;
}

/* FORMULÁRIO E MAPA */
.contato-completo {
  padding: 90px 8%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.container-contato {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.formulario-wrapper h3,
.mapa-wrapper h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.formulario-wrapper > p,
.mapa-wrapper > p {
  font-size: 1rem;
  color: #5a6c7d;
  margin-bottom: 30px;
  line-height: 1.7;
}

.mapa-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.mapa-container iframe {
  display: block;
}

.como-chegar {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.como-chegar h4 {
  font-size: 1.3rem;
  color: #2d7a4f;
  margin-bottom: 20px;
  font-weight: 600;
}

.como-chegar ul {
  list-style: none;
  padding: 0;
}

.como-chegar ul li {
  font-size: 1rem;
  color: #5a6c7d;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  line-height: 1.6;
}

.como-chegar ul li:last-child {
  border-bottom: none;
}

.como-chegar strong {
  color: #2c3e50;
}

/* FAQ */
.faq-section {
  padding: 90px 8%;
  background-color: #ffffff;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
}

.faq-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6, 161, 125, 0.15);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-item h3::first-letter {
  color: #2d7a4f;
  opacity: 0.8;
  margin-right: 8px;
}

.faq-item p {
  font-size: 0.95rem;
  color: #5a6c7d;
  line-height: 1.8;
}

/* ===================================
   PÁGINA EVENTOS
   =================================== */
.eventos-section {
  padding: 90px 8%;
  background-color: #ffffff;
}

.eventos-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
}

.eventos-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a4d2e, #2d7a4f);
  border-radius: 2px;
}

/* Layout social: foto + texto lado a lado */
.evento-social {
  display: flex;
  align-items: stretch;
  gap: 0;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  margin-bottom: 60px;
  transition: all 0.3s ease;
}

.evento-social:last-child {
  margin-bottom: 0;
}

.evento-social:hover {
  box-shadow: 0 15px 40px rgba(6, 161, 125, 0.18);
  transform: translateY(-5px);
}

.evento-social-foto {
  flex: 0 0 50%;
  min-height: 350px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #d1d1d1 100%);
}

.evento-social-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.evento-social:hover .evento-social-foto img {
  transform: scale(1.05);
}

/* Carrossel de Eventos */
.evento-carrossel {
  position: relative;
  overflow: hidden;
}

.carrossel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.carrossel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carrossel-slide:nth-child(2) {
  object-fit: contain;
  background: linear-gradient(135deg, #1a5a3a 0%, #0d3d26 100%);
}

.carrossel-slide.active {
  opacity: 1;
}

.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a5a3a;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carrossel-btn:hover {
  background: #1a5a3a;
  color: white;
}

.carrossel-prev {
  left: 10px;
}

.carrossel-next {
  right: 10px;
}

/* Em Breve Eventos */
.evento-em-breve {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  margin-top: 40px;
  border: 2px dashed #1a5a3a;
}

.evento-em-breve h3 {
  font-size: 1.8rem;
  color: #1a5a3a;
  margin-bottom: 15px;
}

.evento-em-breve p {
  color: #555;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.evento-social-texto {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.evento-badge-inline {
  display: inline-block;
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
  color: white;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  width: fit-content;
}

.evento-social-texto h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.evento-data {
  display: inline-block;
  font-size: 0.9rem;
  color: #2d7a4f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.evento-local {
  font-size: 0.95rem;
  color: #5a6c7d;
  margin-bottom: 15px;
  font-weight: 500;
}

.evento-descricao {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.8;
}

/* Invertido: texto esquerda, foto direita */
.evento-social-invertido {
  flex-direction: row-reverse;
}

/* ===================================
   BOTÃO FLUTUANTE WHATSAPP
   =================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

/* Tooltip do WhatsApp */
.whatsapp-float::before {
  content: "Fale conosco!";
  position: absolute;
  right: 70px;
  background-color: #2c3e50;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: "Inter", sans-serif;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .whatsapp-float::before {
    display: none;
  }
}

