/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: #fff;
  scroll-behavior: smooth;
}
  


/* Vídeo background */
#video-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.45);
  will-change: transform;
}

/* Conteúdo principal */
.content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 20px 80px;
  text-align: center;
  user-select: none;
}
h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.3em;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
h2 {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.2em;
  color: #a9d6a0;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}
button.cta {
  background-color: #f5b700;
  border: none;
  padding: 18px 48px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  color: #004d25;
  box-shadow: 0px 7px 12px rgba(245, 183, 0, 0.7);
  transition: all 0.3s ease;
  user-select: none;
}
button.cta:hover, button.cta:focus {
  background-color: #e6a500;
  box-shadow: 0 9px 18px rgba(230, 165, 0, 0.9);
  outline: none;
}

/* Secoes secundárias */
section {
  
  margin: 60px auto;
  border-radius: 18px;
  padding: 40px 30px;
  max-width: 900px;
  
  user-select: text;
}
section h3 {
  font-size: 2em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 12px #bbac36;
}
section p, section li {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #d1e7b4;
}
ul.benefits {
  list-style-type: disc;
  padding-left: 1.2em;
}
ul.benefits li {
  margin-bottom: 1em;
}
blockquote {
  border-left: 6px solid #f5b700;
  padding-left: 18px;
  font-style: italic;
  color: #fcefb0;
  margin-bottom: 1.2em;
  background: rgb(255, 255, 255, 0.15);;
  box-shadow: 1px 1px 6px rgb(255, 255, 255);
  padding: 10px;
}
blockquote footer {
  text-align: right;
  font-weight: 700;
  color: #f5b700;
}
.contact {
  text-align: center;
  margin-top: 50px;
}
.contact a {
  font-weight: 700;
  color: #f5b700;
  text-decoration: none;
  font-size: 1.2rem;
}
.contact a:hover, .contact a:focus {
  color: #d49c00;
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 740px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.2rem;
    margin-bottom: 1em;
  }
  button.cta {
    padding: 14px 36px;
    font-size: 1.1rem;
  }
  section {
    padding: 30px 20px;
    
    max-width: 95%;
  }
}


/* Estilos para ícones em títulos e lista */
section h3 i, ul.benefits li i, ol li i {
  color: #f5b700;
  margin-right: 14px;
  min-width: 20px;
  text-align: center;
}

/* Lista benefícios + processo formatos */
ul.benefits li {
  margin-bottom: 1.2em;
  font-size: 1.1rem;
  line-height: 1.4;
}
ol li {
  margin-bottom: 1.2em;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Entrada flutuante */
.animate-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Outros estilos e media queries continuam normalmente... */
.benefits-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  animation: fadeInUp 1.2s ease;
}
.benefits-image {
  max-width: 420px;
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,77,36,0.18), 0 1.5px 8px #f5b70055;
  transition: transform 0.32s cubic-bezier(.17,.67,.83,.67), box-shadow 0.32s;
}
.benefits-image:hover, .benefits-image:focus {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 16px 40px rgba(0,77,36,0.30), 0 2px 16px #f5b70099;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}
ul.benefits li i {
  color: #f5b700;
  margin-right: 14px;
  min-width: 20px;
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10px;
  user-select: text;
}
.benefit-item {
  background: rgba(255 255 255 / 0.15);
  border-radius: 20px;
  padding: 28px 24px;
  color: #dcedc8;
  font-weight: 600;
  text-shadow: 0 0 3px #004d40;
  box-shadow: 0 3px 10px rgba(0, 77, 36, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 1.15rem;
  transition: background-color 0.3s ease;
  cursor: default;
}
.benefit-item:hover {
  background: rgba(255 255 255 / 0.30);
  box-shadow: 0 6px 30px rgba(0, 77, 36, 0.6);
}
.benefit-item i {
  color: #f5b700;
  font-size: 3.4rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 4px solid #f5b700;
  user-select: text;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-icon {
  background-color: #f5b700;
  color: #004d40;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(245, 183, 0, 0.7);
  position: relative;
  top: 4px;
}
.timeline-content {
  background: rgba(255 255 255 / 0.15);
  border-radius: 20px;
  padding: 28px 24px;
  font-size: 1.15rem;
  color: #dcedc8;
  line-height: 1.5;
  padding-top: 6px;
}
@media (max-width: 740px) {
  .timeline {
    padding-left: 20px;
    border-left-width: 3px;
  }
  .timeline-icon {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .timeline-content {
    font-size: 1.1rem;
  }
}
.video-gallery {
  width: 100vw;
  max-width: 100%;
  margin: 60px 0 64px 0;
  padding: 0 16px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.video-gallery h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 28px;
  text-shadow: 0 0 10px #000;
  user-select: text;
}

/* Vídeo lista vertical, um por vez */
.video-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  max-width: 540px;
  margin: 0 auto;
}
.video-item {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 9 / 16; /* retrato */
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(245, 183, 0, 0.6);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Quando visível */
.video-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsivo para mobile */
@media (max-width: 600px) {
  .video-list {
    max-width: 95vw;
  }
  .video-item {
    max-width: 95vw;
  }
}
.cta {
  background-color: #ffcc00;
  color: #004d25;
  border: none;
  padding: 20px 52px;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50px;
  cursor: pointer;
  box-shadow:
    0 0 12px #ffcc00,
    0 0 20px #ffcc00,
    inset 0 -4px 10px #ccaa00;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  animation: pulse 2.5s infinite ease-in-out;
}

.cta:hover,
.cta:focus {
  background-color: #ffdb33;
  box-shadow:
    0 0 18px #ffdb33,
    0 0 30px #ffdb33,
    inset 0 -6px 14px #eebb00;
  transform: scale(1.08);
  outline: none;
}

@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 12px #ffcc00,
      0 0 20px #ffcc00,
      inset 0 -4px 10px #ccaa00;
  }
  50% {
    box-shadow:
      0 0 20px #ffe066,
      0 0 36px #ffe066,
      inset 0 -6px 16px #ddbb00;
  }
}
.contact-section {
  background: linear-gradient(135deg, #007affcc, #00d2ffcc);
  padding: 60px 20px;
  border-radius: 24px;
  max-width: 1100px;
  margin: 100px auto 40px;
  box-shadow: 0 14px 36px rgba(0, 122, 255, 0.5);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  user-select: text;
}

.contact-content {
  display: flex;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.contact-text h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 18px;
  text-shadow: 0 0 6px #004d99;
}

.contact-text p {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.contact-text .highlight {
  font-size: 1.25rem;
  font-weight: 900;
  margin-top: 18px;
  color: #ffeb3b;
  text-shadow: 0 0 10px #ffe600;
}

.contact-text .region-note {
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 12px;
  color: #cceeffcc;
}

.contact-text .cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  background-color: #25d366;
  color: #fff;
  padding: 18px 44px;
  border-radius: 48px;
  font-weight: 900;
  box-shadow:
    0 0 12px #25d366,
    0 0 20px #25d366,
    inset 0 -4px 10px #1ebe57;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  user-select: none;
}

.contact-text .cta i.fab {
  font-size: 1.8rem;
}

.contact-text .cta:hover,
.contact-text .cta:focus {
  box-shadow:
    0 0 20px #3af576,
    0 0 36px #3af576,
    inset 0 -6px 16px #27c85a;
  transform: scale(1.05);
  outline: none;
  color: #fff;
}

.contact-image {
  flex: 1 1 280px;
  max-width: 280px;
  user-select: none;
}

.contact-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(0, 122, 255, 0.4);
}

/* Responsividade */
@media (max-width: 720px) {
  .contact-section {
    flex-direction: column;
    text-align: center;
  }
  .contact-text {
    max-width: 100%;
  }
  .contact-image {
    max-width: 80%;
    margin: 0 auto;
  }
  .contact-text .cta {
    font-size: 1.3rem;
    padding: 16px 36px;
  }
}
.logo-wrapper {  
  margin: 0 auto 18px auto;
  text-align: center;
}
.logo-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,77,36,0.15);
  background: transparent;
}

.gallery-section {
  width: 100vw;
  max-width: 100%;
  
  padding: 40px 0 54px 0;
  text-align: center;
}
.gallery-section h3 {
  font-size: 1.7rem;
  color: #004d40;
  font-weight: 800;
  margin-bottom: 28px;
  text-shadow: 0 0 10px #e6e6e6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 22px;
    max-width: 1050px;
  margin: 0 auto;
}
.gallery-item {
  cursor: pointer;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 3px 18px #c7d7e955;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  transition: transform 0.22s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover {
  transform: scale(1.04);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 18px;
  display: block;
}
.gallery-item video {
  background: #000;
}
.play-icon {
  color: #fffdfd;
  font-size: 2.7rem;
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 8px #222;
}

/* Modal (sobreposição) */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(12,24,32,.9);
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
  transition: background 0.25s;
}
.gallery-modal.show {
  display: flex;
}
.gallery-close {
  color: #fff;
  position: absolute;
  top: 32px;
  right: 40px;
  font-size: 2.7rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 11;
  text-shadow: 0 0 14px #000;
  transition: color 0.18s;
}
.gallery-close:hover { color: #ffeb3b; }
#gallery-modal-content {
  background: transparent;
  padding: 0;
  border-radius: 18px;
  max-width: 96vw;
  max-height: 82vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gallery-modal-content img,
#gallery-modal-content video {
  max-width: 96vw;
  max-height: 80vh;
  border-radius: 18px;
  background: #0d121a;
  box-shadow: 0 2px 18px #333b;
}
#gallery-modal-content video {
  background: #000;
}
.gallery-nav {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.7rem;
  font-weight: bold;
  z-index: 11;
  cursor: pointer;
  user-select: none;
  padding: 12px 22px;
  background: rgba(0,33,66,0.32);
  border-radius: 18px;
  transition: background 0.17s;
}
.gallery-prev { left: 24px; }
.gallery-next { right: 24px; }
.gallery-nav:hover { background: #ffeb3b33; color: #ffe600; }

@media (max-width: 600px) {
  .gallery-nav {
    font-size: 2rem;
    padding: 8px 14px;
  }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
}


.about-maurilio {
  width: 100vw;
  max-width: 1100px;
  margin: 0 auto 56px auto;
  padding: 0 12px;
  background: #232a2f;
  box-shadow: 0 2px 14px #0005;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  user-select: text;
}

.about-maurilio-img-wrapper {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.about-maurilio-img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  border: none;
}

.about-maurilio-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 10px 30px 10px;
  text-align: left;
  color: #fff;
}

.about-maurilio-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #f5b700;
  line-height: 1.1;
}

.about-maurilio-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 2px 10px #17291b60;
}

/* Desktop - imagem e texto lado a lado */
@media (min-width: 900px) {
  .about-maurilio {
    flex-direction: row;
    justify-content: center;
    gap: 36px;
    padding: 0 24px;
  }
  .about-maurilio-img-wrapper,
  .about-maurilio-content {
    flex: 1 1 50%;
    max-width: 50%;
    margin-bottom: 0;
  }
  .about-maurilio-content {
    padding-top: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .about-maurilio-img-wrapper {
    max-width: 95vw;
  }
  .about-maurilio-content {
    max-width: 95vw;
    padding: 20px 6vw 30px 6vw;
  }
  .about-maurilio-content h3 {
    font-size: 1.3rem;
  }
  .about-maurilio-content p {
    font-size: 1rem;
  }
}
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 56px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 100000;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.whatsapp-float:hover, .whatsapp-float:focus {
  background-color: #20b34a;
  transform: scale(1.1);
  outline: none;
}
.social-section {
  text-align: center;
  margin: 34px 0 0 0;
  padding-bottom: 18px;
  color: #fff;
}

.social-section p {
  font-size: 1.14rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.12rem;
  color: #ffe600;
  background: rgba(36,30,7,0.05);
  padding: 10px 18px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px #786a0f22;
}

.social-icons a:hover,
.social-icons a:focus {
  background: #ffeb3b;
  color: #004d40;
  box-shadow: 0 4px 18px #ffd60033;
}

.social-icons i {
  font-size: 1.4em;
  color: #ff4081;
  vertical-align: middle;
}

.social-icons a:last-child i {
  color: #3b5998;
}
