@charset "UTF-8";
/* ======================================================
 * RESET CSS MODERNO + BASE
 * ======================================================
 */
/* Box sizing para todos os elementos */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove margens/paddings padrão */
html,
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, figure,
dl, dd,
ul, ol, li,
fieldset, legend,
pre, table, th, td,
form, input, textarea,
button {
  margin: 0;
  padding: 0;
}

/* Remove listas decoradas */
ul,
ol {
  list-style: none;
}

/* Links sem decoração */
a {
  text-decoration: none;
  color: inherit;
}

/* Tipografia base */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: "Nunito", sans-serif;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Imagens responsivas */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Tabelas limpas */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Inputs e botões */
button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

/* Remove estilos do navegador */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo img {
  height: 32px;
}
.header .menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  display: block;
  z-index: 1100;
}
.header .main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 80%;
  background-color: #fff;
  padding: 4rem 2rem;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.header .main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.header .main-nav ul li a {
  font-size: 1.125rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header .main-nav ul li a.menu-small {
  font-size: 0.875rem;
  line-height: 1rem;
}
.header .main-nav ul li a.menu-small svg {
  font-size: 1.25rem;
}
.header .main-nav ul li.divider {
  height: 1px;
  background: #ccc;
  margin: 1rem 0;
}
.header .main-nav ul li .highlight {
  font-weight: bold;
  color: #0058f4;
}
.header .main-nav.active {
  right: 0;
}
.header .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 900;
}
.header .menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.header .main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 80%;
  background-color: #fff;
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.header .main-nav .menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.header .main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.header .main-nav.active {
  right: 0;
}
@media (min-width: 768px) {
  .header .menu-overlay {
    display: none;
  }
  .header .main-nav {
    position: static;
    height: auto;
    width: auto;
    padding: 0;
    flex-direction: row;
    background: none;
    transition: none;
  }
  .header .main-nav .menu-close {
    display: none;
  }
  .header .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .header .main-nav.active {
    right: auto;
  }
}
@media (min-width: 768px) {
  .header .menu-toggle {
    display: none;
  }
  .header .main-nav {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    padding: 0;
    background: none;
    transition: none;
  }
  .header .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .header .main-nav.active {
    right: auto;
  }
}

.hero {
  position: relative;
  background: url("assets/img/bg-banner.jpg") no-repeat center center/cover;
  color: #fff;
  overflow: hidden;
  padding: 4rem 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__content {
  max-width: 600px;
  background-color: rgba(0, 17, 51, 0.7);
  padding: 2rem;
}
.hero__content h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 2rem;
}
.hero__content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.hero__content .btn {
  display: inline-block;
  background-color: #0058f4;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.hero__content .btn:hover {
  background-color: #0040bb;
  transform: translateY(-2px);
}
.hero__content .btn:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.hero__image {
  margin-top: 3rem;
}
.hero__image img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .hero .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero__content {
    max-width: 50%;
    max-width: 500px;
  }
  .hero__image {
    max-width: 50%;
    margin-top: 0;
  }
  .hero__image img {
    max-width: 80%;
    height: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
  }
  .hero__image img {
    width: 100%;
  }
}

.solucoes {
  padding: 4rem 0;
  background-color: #fff;
}
.solucoes .solucoes__icons__img {
  display: none;
}
.solucoes__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.solucoes__grid .solucoes__item {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  width: 120px;
  height: 120px;
  border-radius: 5px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.solucoes__grid .solucoes__item:hover {
  transform: rotate(45deg) translateY(-4px);
}
.solucoes__grid .solucoes__item > div {
  transform: rotate(-45deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.solucoes__grid .solucoes__item img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}
.solucoes__grid .solucoes__item span {
  font-size: 0.875rem;
  font-weight: 500;
  width: 90%;
  color: #000;
}
.solucoes__listas {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.solucoes__listas ul {
  list-style: none;
  padding: 0;
}
.solucoes__listas ul li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  color: #000;
  margin-bottom: 0.75rem;
}
.solucoes__listas ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 16px;
  height: 16px;
  background: url("assets/img/marker.png") no-repeat center center/contain;
}
@media (min-width: 1024px) {
  .solucoes__listas {
    flex-direction: row;
    justify-content: space-between;
  }
  .solucoes__listas ul {
    flex: 1;
  }
}
.solucoes__botoes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.solucoes__botoes .btn {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.solucoes__botoes .btn.filled {
  background-color: #0058f4;
  color: #fff;
  border: none;
}
.solucoes__botoes .btn.filled:hover {
  background-color: #0040bb;
}
.solucoes__botoes .btn.outline {
  border: 2px solid #0058f4;
  color: #0058f4;
  background-color: transparent;
}
.solucoes__botoes .btn.outline:hover {
  background-color: #eef3ff;
}
.solucoes__botoes .btn.outline i {
  margin-left: 0.4rem;
}
@media (min-width: 768px) {
  .solucoes__botoes {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .solucoes .container .solucoes__icons__img {
    display: block;
  }
}
.ia-cameras {
  background-color: #111d2e;
  color: #fff;
  padding: 4rem 0;
}
.ia-cameras .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ia-cameras__content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.ia-cameras__content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}
.ia-cameras__content .btn {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #0058f4;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.ia-cameras__content .btn:hover {
  background-color: #0040bb;
  transform: translateY(-2px);
}
.ia-cameras__media img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1024px) {
  .ia-cameras .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .ia-cameras__content {
    width: 55%;
    max-width: 500px;
  }
  .ia-cameras__media {
    width: 50%;
  }
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.75);
}
.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.video-modal__content {
  position: relative;
  max-width: 90%;
  width: 800px;
  background: #000;
  overflow: hidden;
  z-index: 1;
}
.video-modal__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-modal__frame iframe, .video-modal__frame video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
}
.video-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  z-index: 2;
  cursor: pointer;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.video-modal.closing {
  opacity: 0;
  transform: scale(0.95);
  visibility: hidden;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.video-modal__content {
  position: relative;
  max-width: 90%;
  width: 800px;
  background: #000;
  overflow: hidden;
  z-index: 1;
}
.video-modal__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-modal__frame iframe,
.video-modal__frame video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
}
.video-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  z-index: 2;
  cursor: pointer;
}

.fluxo-ia {
  background: #f9f9f9;
  padding: 6rem 0 4rem;
}
.fluxo-ia__imagens {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.fluxo-ia__imagens .fluxo-ia__img {
  width: 48%;
  height: auto;
}
.fluxo-ia__imagens .fluxo-ia__img--left {
  display: block;
}
.fluxo-ia__imagens .fluxo-ia__img--right {
  display: block;
}
.fluxo-ia__imagens .fluxo-ia__camera {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  z-index: 1;
}
.fluxo-ia__texto {
  margin-bottom: 2rem;
}
.fluxo-ia__texto h2 {
  font-size: 2rem;
}
.fluxo-ia__texto h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.fluxo-ia__texto p {
  font-size: 1rem;
  color: #555;
}
.fluxo-ia__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .fluxo-ia__info {
    flex-direction: row;
  }
}
.fluxo-ia__info-texto {
  flex: 1;
}
.fluxo-ia__info-texto h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  max-width: 550px;
}
.fluxo-ia__info-texto ul {
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}
.fluxo-ia__info-texto ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.fluxo-ia__info-imagem {
  flex: 1;
}
.fluxo-ia__info-imagem img {
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.fluxo-ia__botoes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 480px) {
  .fluxo-ia__botoes {
    flex-direction: row;
  }
}
.fluxo-ia__botoes .btn {
  align-self: flex-start;
  background-color: #0058f4;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.fluxo-ia__botoes .btn:hover {
  background-color: #0040bb;
  transform: translateY(-2px);
}
.fluxo-ia__botoes .btn.outline {
  background-color: #fff;
  color: #0058f4;
  border: 2px solid #0058f4;
}
.fluxo-ia__botoes .btn.outline:hover {
  background-color: #eef3ff;
}
@media (max-width: 767px) {
  .fluxo-ia {
    padding: 13rem 0 4rem;
  }
  .fluxo-ia__imagens .fluxo-ia__img--left {
    display: none;
  }
  .fluxo-ia__imagens .fluxo-ia__img--right {
    width: 100%;
  }
  .fluxo-ia__imagens .fluxo-ia__camera {
    top: -35%;
  }
}

.aplicacoes {
  padding: 4rem 0;
  background-color: #fff;
}
.aplicacoes__titulo {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.aplicacoes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 600px) {
  .aplicacoes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .aplicacoes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.aplicacoes__card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aplicacoes__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.31);
}
.aplicacoes__card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.aplicacoes__card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #111;
}
.aplicacoes__card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.segmentos {
  background-color: #f6f7f9;
  padding: 4rem 0;
}
.segmentos__titulo {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
@media (max-width: 768px) {
  .segmentos__titulo {
    text-align: center;
  }
}
.segmentos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .segmentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .segmentos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.segmentos__item strong {
  font-weight: 800;
  color: #111;
  display: block;
  margin-bottom: 0.25rem;
}
.segmentos__item p {
  font-size: 0.95rem;
  color: #444;
}
.segmentos__botoes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 480px) {
  .segmentos__botoes {
    flex-direction: row;
  }
}
.segmentos__botoes .btn {
  background-color: #0058f4;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.segmentos__botoes .btn:hover {
  background-color: #0040bb;
  transform: translateY(-2px);
}
.segmentos__botoes .btn.outline {
  background-color: #fff;
  color: #0058f4;
  border: 2px solid #0058f4;
}
.segmentos__botoes .btn.outline:hover {
  background-color: #eef3ff;
}
@media (max-width: 768px) {
  .segmentos__botoes {
    align-items: center;
  }
}

.projeto-locacao {
  background-color: #fff;
  padding: 4rem 0;
}
.projeto-locacao__conteudo {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .projeto-locacao__conteudo {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.projeto-locacao__texto {
  flex: 1;
  max-width: 600px;
}
.projeto-locacao__texto h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.projeto-locacao__texto p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.projeto-locacao__texto ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.projeto-locacao__texto ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #444;
}
.projeto-locacao__texto .btn {
  background-color: #0058f4;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.projeto-locacao__texto .btn:hover {
  background-color: #0040bb;
  transform: translateY(-2px);
}
.projeto-locacao__imagens {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.projeto-locacao__imagens .imagem-superior,
.projeto-locacao__imagens .imagem-inferior {
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .projeto-locacao__imagens .imagem-superior,
  .projeto-locacao__imagens .imagem-inferior {
    width: 80%;
  }
}

.parceiros {
  background: #f5f6fa;
  padding: 2rem 0;
}
.parceiros .container {
  overflow-x: auto;
}
.parceiros__wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 0;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.parceiros__wrapper::-webkit-scrollbar {
  display: none;
}
.parceiros__logo {
  flex: 0 0 auto;
  scroll-snap-align: center;
}
.parceiros__logo img {
  max-height: 40px;
  filter: grayscale(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.parceiros__logo img:hover {
  transform: scale(1.05);
  filter: grayscale(0);
  opacity: 1;
}

.footer {
  background-color: #161827;
  background-image: url("assets/img/bg-footer.png");
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-size: 0.95rem;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer__logo {
  flex: 1 1 250px;
}
.footer__logo img {
  width: 160px;
  margin-bottom: 1rem;
}
.footer__logo p {
  margin: 0.3rem 0;
  line-height: 1.5;
}
.footer__links {
  flex: 1 1 180px;
}
.footer__links h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer__links ul {
  list-style: none;
  padding: 0;
}
.footer__links ul li {
  margin-bottom: 0.5rem;
}
.footer__links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links ul li a:hover {
  color: #aaa;
}
.footer__contato {
  flex: 1 1 220px;
}
.footer__contato h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer__contato p {
  margin-bottom: 0.5rem;
}
.footer__contato p a {
  color: #fff;
  text-decoration: none;
}
.footer__contato p a:hover {
  text-decoration: underline;
}
.footer__flags {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  margin-left: auto;
}
.footer__flags img {
  width: 28px;
  height: auto;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 1rem;
  font-size: 0.85rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__flags {
    margin: 1rem 0 0;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 10%;
  right: 5%;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  transition: transform 0.2s;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal__content {
  position: relative;
  max-width: 500px;
  margin: 80px auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  z-index: 10;
  animation: slideDown 0.4s ease-out;
  max-height: 90vh;
  overflow: auto;
}
.modal__content h2 {
  margin-bottom: 1rem;
}
.modal__content label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}
.modal__content input,
.modal__content textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.modal__content button {
  margin-top: 1.5rem;
  background-color: #25D366;
  color: white;
  padding: 0.75rem;
  width: 100%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
.modal__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
}
.modal__checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.modal__checkbox-group input[type=checkbox] {
  margin: 0;
  width: auto;
  height: auto;
  appearance: checkbox;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
}
.modal__checkbox-group label {
  display: inline;
  margin-top: 0;
  font-weight: normal;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.video-trigger {
  color: #0040bb;
  font-weight: 700;
}
.video-trigger:hover {
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */