/* =====================================
   RESET
===================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;

  color: #182230;

  background: #fff;
}

.container {
  width: 90%;

  max-width: 1200px;

  margin: auto;
}

/* =====================================
   HEADER BASE
===================================== */

header {
  background: #ffffff;

  position: sticky;

  top: 0;

  z-index: 999;

  border-bottom: 1px solid #eef2f6;
}

.header {
  height: 88px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.logo {
  width: 150px;

  height: auto;
}

nav {
  display: flex;

  gap: 35px;
}

nav a {
  text-decoration: none;

  color: #344054;

  font-size: 15px;

  font-weight: 600;
}

nav a:hover {
  color: #0066ff;
}

.header-button {
  background: #0066ff;

  color: white;

  text-decoration: none;

  padding: 14px 28px;

  border-radius: 40px;

  font-weight: 700;
}

/* =====================================
   TITULOS
===================================== */

.section-title {
  text-align: center;

  margin-bottom: 55px;
}

.section-title span {
  color: #0066ff;

  font-weight: 700;
}

.section-title h2 {
  font-size: 40px;

  color: #003b82;

  margin-top: 12px;
}

/* =====================================
   SEÇÃO HERO INDEX
===================================== */

.hero {
  position: relative;

  overflow: hidden;

  background: linear-gradient(120deg, #ffffff 45%, #f1f7ff);

  padding: 90px 0 120px;
}

.hero::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -180px;
  top: -180px;

  background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent 70%);

  border-radius: 50%;
}

/* GRID */

.hero-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

/* TEXTO */

.hero-content {
  position: relative;

  z-index: 2;
}

.label {
  display: inline-block;

  color: #0066ff;

  background: #eaf3ff;

  padding: 10px 22px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 700;

  margin-bottom: 25px;
}

.hero h1 {
  color: #003b82;

  font-size: 52px;

  line-height: 1.12;

  letter-spacing: -1.5px;

  margin-bottom: 25px;
}

.hero p {
  color: #667085;

  font-size: 19px;

  line-height: 1.7;

  max-width: 540px;

  margin-bottom: 35px;
}

/* BOTÕES */

.hero-actions {
  display: flex;

  gap: 18px;

  margin-bottom: 45px;
}

.button-primary {
  background: #0066ff;

  color: white;

  padding: 18px 38px;

  border-radius: 50px;

  font-weight: 700;

  text-decoration: none;

  transition: 0.3s;
}

.button-primary:hover {
  background: #0052cc;

  transform: translateY(-3px);
}

.button-outline {
  border: 2px solid #0066ff;

  color: #0066ff;

  padding: 16px 38px;

  border-radius: 50px;

  font-weight: 700;

  text-decoration: none;

  transition: 0.3s;
}

.button-outline:hover {
  background: #eaf3ff;
}

/* =====================================
   DESTAQUES - FIBRA OPTICA / INSTALAÇÃO RAPIDA / SUPORTE ESPECIALIZADO
===================================== */

.highlights {
  display: flex;

  gap: 30px;
}

.highlights div {
  display: flex;

  align-items: center;

  gap: 12px;
}

.highlights i {
  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #eaf3ff;

  color: #0066ff;

  border-radius: 14px;

  font-size: 23px;
}

.highlights p {
  margin: 0;

  font-size: 14px;

  font-weight: 600;

  color: #344054;
}

/* =====================================
   ÁREA DA NETY JOINHA PRIMEIRA FOTO
===================================== */

.hero-image {
  position: relative;
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

/* SVG FIBRA */

.network-bg {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;
}

.network-bg path {
  fill: none;

  stroke: url(#fiberGradient);

  stroke-width: 3;

  opacity: 0.35;

  stroke-linecap: round;

  stroke-dasharray: 15 20;

  animation: fiberMove 8s linear infinite;
}

@keyframes fiberMove {
  from {
    stroke-dashoffset: 200;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.network-bg circle {
  fill: #0066ff;

  opacity: 0.4;
}

/* BRILHO ATRÁS DA NETY */

.hero-image::before {
  content: "";

  position: absolute;

  width: 380px;

  height: 380px;

  background: #0066ff;

  opacity: 0.1;

  filter: blur(90px);

  border-radius: 50%;
}

/* MASCOTE */
.hero-mascot {
  position: relative;
  z-index: 3;
}

.hero-mascot img {
  width: 390px;
  max-width: 100%;
  padding-right: 40px;

  filter: drop-shadow(0 30px 35px rgba(0, 102, 255, 0.25));

  animation: floatNety 5s ease-in-out infinite;
}

.hero-mascot {
  position: relative;
}

.hero-mascot::after {
  content: "";

  position: absolute;

  bottom: -10px;
  left: 50%;

  width: 220px;
  height: 35px;

  transform: translateX(-50%);

  background: rgba(0, 102, 255, 0.25);

  filter: blur(25px);

  border-radius: 50%;

  z-index: -1;
}

.about-image {
  position: relative;
  text-align: center;
}

.about-image::after {
  content: "";
  position: absolute;

  width: 220px;
  height: 35px;

  bottom: 20px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 0;
}

.about-image img {
  position: relative;

  z-index: 1;

  width: 100%;

  max-width: 380px;

  filter: none;
}

.about-image img {
  width: 100%;
  max-width: 380px;
  filter: none !important;
  box-shadow: none !important;
}

@keyframes floatNety {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* =====================================
   CARDS NETY.WEBP - NETY JOINHA TEXTOS
===================================== */

.nety-message {
  position: absolute;

  top: 60px;

  right: 0px;

  background: white;

  padding: 22px 28px;

  border-radius: 22px;

  width: 230px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

  z-index: 3;
}

.nety-message::after {
  content: "";

  position: absolute;

  bottom: -12px;

  left: 40px;

  border-width: 12px 12px 0;

  border-style: solid;

  border-color: white transparent transparent;
}

.nety-message p {
  color: #003b82;

  font-weight: 700;

  font-size: 16px;

  margin: 0 0 8px;
}

.nety-message span {
  display: block;

  color: #667085;

  font-size: 14px;

  line-height: 1.5;
}

/* =====================================
   CARDS FLUTUANTES - TEXTOS - NETY.WEBP JOINHA IMAGEM
===================================== */

.floating-card {
  position: absolute;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 14px;

  background: white;

  padding: 15px 20px;

  border-radius: 18px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  border: 1px solid #eef2f6;
}

.floating-card i {
  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  background: #eaf3ff;

  color: #0066ff;

  font-size: 21px;
}

.floating-card strong {
  display: block;

  color: #003b82;

  font-size: 15px;
}

.floating-card span {
  display: block;

  color: #667085;

  font-size: 13px;
}

.card-speed {
  top: 150px;

  left: -20px;
}

.card-fiber {
  bottom: 130px;

  left: 0;
}

.card-support {
  bottom: 70px;

  right: 10px;
}


/* ==========================
   SOBRE A NETY - SEÇÃO CONHEÇA A NETY
========================== */

.about-nety {
  padding: 50px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 40px rgba(0, 180, 255, 0.25));
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #eef8ff;
  color: #00b7ff;
  font-weight: 600;
  margin-bottom: 18px;
}

.about-content h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 45px;
  max-width: 600px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #edf1f7;
  transition: 0.35s;
}

.feature:hover {
  transform: translateY(-8px);

  border-color: #39d353;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.icon {
  width: 65px;
  height: 65px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(135deg, #005bff, #00d084);

  color: #fff;
  font-size: 28px;
}

.feature h3 {
  margin-bottom: 8px;

  font-size: 20px;
}

.feature p {
  color: #666;
  line-height: 1.7;
}

/* ==========================
   A Nety acompanha você durante todo o processo.
========================== */

.steps {
  padding: 70px 0;

  background: #07172d;

  color: #fff;
}

.steps .section-title {
  text-align: center;

  margin-bottom: 70px;
}

.steps .section-title span {
  color: #39d353;
  font-weight: 600;
}

.steps .section-title h2 {
  font-size: 46px;
  margin: 15px 0;
}

.steps .section-title p {
  color: #b5c3d5;
}

.steps-wrapper {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  position: relative;
}

.steps-wrapper::before {
  content: "";

  position: absolute;

  left: 8%;
  right: 8%;
  top: 48px;

  height: 3px;

  background: linear-gradient(90deg, #005bff, #00d084);

  z-index: 0;
}

.step {
  position: relative;

  z-index: 2;

  background: #0d223d;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 24px;

  padding: 35px 25px;

  text-align: center;

  transition: 0.35s;
}

.step:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  border-color: #39d353;
}

.step-icon {
  width: 85px;
  height: 85px;

  margin: auto;

  margin-bottom: 25px;

  border-radius: 50%;

  background: linear-gradient(135deg, #005bff, #00d084);

  display: flex;

  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 34px;
}

.step span {
  display: inline-block;

  margin-bottom: 15px;

  color: #39d353;

  font-weight: 700;

  font-size: 14px;

  letter-spacing: 2px;
}

.step h3 {
  margin-bottom: 15px;

  font-size: 22px;
}

.step p {
  color: #c0cbda;

  line-height: 1.8;
}

.steps-mascot {
  position: relative;

  overflow: visible;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 80px;

  padding: 45px 80px;

  min-height: 230px;
}

.nety-point {
  position: absolute;

  width: 360px;

  left: -40px;

  bottom: -110px;

  z-index: 10;

  transition: 0.35s ease;

  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.25));
}

.steps-text {
  text-align: center;
  max-width: 550px;
}

.steps-text span {
  display: block;

  color: #39d353;

  font-size: 16px;

  font-weight: 700;

  margin-bottom: 12px;
}

.steps-text strong {
  display: block;

  color: white;

  font-size: 38px;

  line-height: 1.2;

  margin-bottom: 15px;
}

.steps-text p {
  color: rgba(255, 255, 255, 0.9);

  font-size: 18px;

  line-height: 1.7;
}

/* ==========================
FAQ BASE
========================== */

.faq {
  padding: 100px 0;
  background: #fff;
}

.faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-list details {
  border: 1px solid #e8edf5;
  border-radius: 14px;
  margin-bottom: 16px;
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
}

.faq-list details[open] {
  border-color: #0066ff;
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  font-size: 18px;
  font-weight: 600;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #0066ff;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 26px 24px;
  color: #555;
  line-height: 1.7;
}


.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 30px;
}

.badge {
  background: #f4f7fa;

  border: 1px solid #e5e7eb;

  border-radius: 30px;

  padding: 10px 18px;

  font-size: 14px;

  font-weight: 600;

  color: #1f2937;
}

.cities {
  padding: 80px 0;
}

.cities-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

  gap: 16px;

  margin-top: 40px;
}

.cities-grid span {
  background: #f7f9fc;

  border: 1px solid #e5e7eb;

  border-radius: 12px;

  padding: 16px;

  text-align: center;

  font-weight: 600;

  transition: 0.3s;
}

.cities-grid span:hover {
  transform: translateY(-3px);

  border-color: var(--primary);
}
.final-cta {
  padding: 90px 0;
}

.footer-divider {
  width: 100%;

  height: 1px;

  background: #e5e7eb;

  margin: 30px 0;
}

.footer small {
  display: block;

  max-width: 900px;

  margin: 0 auto;

  line-height: 1.7;

  color: #6b7280;
}
/* =====================================
   SEÇÕES NOVAS DESKTOP - page fibra sorocaba

   FAIXA DE CONFIANÇA
===================================== */


.trust {
  padding: 70px 0;

  background: #f7faff;
}

.trust-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.trust-item {
  background: white;

  padding: 30px;

  border-radius: 22px;

  text-align: center;

  border: 1px solid #edf1f7;

  transition: 0.3s;
}

.trust-item:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.trust-item i {
  width: 65px;

  height: 65px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 20px;

  border-radius: 18px;

  background: linear-gradient(135deg, #0066ff, #00d084);

  color: white;

  font-size: 28px;
}

.trust-item h3 {
  color: #003b82;

  margin-bottom: 12px;
}

.trust-item p {
  color: #667085;

  line-height: 1.6;
}

.plans {
  padding: 100px 0;

  background: white;
}

.plans .features {
  grid-template-columns: repeat(3, 1fr);
}

.residential {
  padding: 100px 0;

  background: #f8fafc;
}

.content-text {
  max-width: 850px;

  margin: 0 auto 45px;

  text-align: center;
}

.content-text p {
  color: #667085;

  font-size: 18px;

  line-height: 1.8;

  margin-bottom: 20px;
}

.disclaimer {
  background: #f5f7fa;

  padding: 30px 0;
}

.disclaimer p {
  max-width: 1000px;

  margin: auto;

  text-align: center;

  color: #667085;

  font-size: 14px;

  line-height: 1.7;
}

.residential-modern {
  padding: 100px 0;
  background: #f7faff;
}

.residential-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.residential-content h2 {
  font-size: 45px;
  line-height: 1.15;
  color: #003b82;
  margin: 20px 0;
}

.residential-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #667085;
  margin-bottom: 35px;
}

.residential-image img {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 40px rgba(0, 102, 255, 0.2));
}

.residential-cards {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.residential-cards div {
  background: white;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #e8edf5;
  transition: 0.3s;
}

.residential-cards div:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.residential-cards i {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  border-radius: 16px;

  font-size: 25px;

  margin-bottom: 20px;
}

.residential-cards h3 {
  color: #003b82;
  margin-bottom: 10px;
}

.residential-cards p {
  font-size: 14px;
  line-height: 1.6;
  color: #667085;
}



/* movimento suave dos cards */
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* =====================================
   CTA FINAL - PAGE FIBRA SOROCABA
===================================== */

.final-cta {
  background: #003b82;

  padding: 80px 0;

  color: white;

  text-align: center;
}

.final-cta h2 {
  font-size: 42px;
}

.final-cta p {
  margin: 20px 0 35px;
}

.final-cta a {
  display: inline-block;

  background: #25d366;

  color: white;

  padding: 18px 45px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 700;
}

/* =====================================
   COBERTURA - PAGE FIBRA SOROCABA
===================================== */
.coverage {
  padding: 90px 0;

  background: linear-gradient(135deg, #061426, #003b82);

  color: white;

  text-align: center;
}

.coverage .container {
  max-width: 800px;
}

.coverage h2 {
  font-size: 42px;

  line-height: 1.2;

  margin-bottom: 20px;

  color: white;
}

.coverage p {
  font-size: 18px;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.85);

  margin-bottom: 35px;
}

/* botão */

.coverage a {
  display: inline-block;

  background: #25d366;

  color: white;

  text-decoration: none;

  padding: 18px 45px;

  border-radius: 50px;

  font-weight: 700;

  font-size: 16px;

  transition: 0.3s;
}

.coverage a:hover {
  transform: translateY(-4px);

  background: #1ebe5d;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* detalhe visual */

.coverage::before {
  content: "";

  display: block;

  width: 90px;

  height: 4px;

  background: #39d353;

  border-radius: 10px;

  margin: 0 auto 35px;
}


  
/* =====================================
   FOOTER PREMIUM BASE
===================================== */

footer {
  background: linear-gradient(135deg, #003b82, #032547);

  color: white;

  padding: 70px 0 0;
}

.footer-content {
  display: grid;

  grid-template-columns: 1.2fr 1fr 1fr;

  gap: 50px;
}

.footer-brand img {
  width: 200px;
  height: auto;
  margin-bottom: 25px;
  filter: none;
}

.footer-brand p {
  color: #a8b4c7;

  line-height: 1.7;

  max-width: 320px;
}

footer h3 {
  color: #ffffff;

  margin-bottom: 20px;

  font-size: 20px;
}

.contact-title {
  color: #98a2b3;

  margin-bottom: 20px;
}

/* TELEFONES WHATSAPP */

.phone-whatsapp {
  display: flex;

  align-items: center;

  gap: 12px;

  text-decoration: none;

  color: #d4deed;

  font-size: 17px;

  margin-bottom: 15px;

  transition: 0.3s;
}

.phone-whatsapp:hover {
  color: #25d366;
}

.phone-whatsapp i {
  width: 38px;

  height: 38px;

  border-radius: 50%;

  background: #25d366;

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 21px;
}

/* EMAIL */

.email-contact {
  margin-top: 25px;
}

.email-contact span {
  display: block;

  color: #98a2b3;

  font-size: 14px;

  margin-bottom: 8px;
}

.email-contact a {
  color: #d4deed;

  text-decoration: none;

  font-size: 15px;
}

.email-contact a:hover {
  color: #0066ff;
}

/* BLOCO CONVERSAO */

.footer-action p {
  color: #a8b4c7;

  line-height: 1.6;

  margin-bottom: 25px;
}

.footer-whatsapp,
.footer-call {
  display: block;

  text-align: center;

  padding: 16px 25px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 700;

  margin-bottom: 15px;

  transition: 0.3s;
}

.footer-whatsapp {
  background: #25d366;

  color: white;
}

.footer-whatsapp:hover {
  background: #1ebe5d;
}

.footer-call {
  background: white;

  color: #003b82;
}

.footer-call:hover {
  background: #eaf3ff;
}

.footer-bottom {
  margin-top: 70px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #e1e6ec;
  font-size: 14px;
}

.footer-bottom a {
  color: #e1e6ec;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}
/* =====================================
   NETY NO FOOTER
===================================== */

.footer-nety {
  margin-top: 25px;

  display: flex;

  align-items: center;

  gap: 15px;

  background: rgba(255, 255, 255, 0.05);

  padding: 15px;

  border-radius: 18px;

  max-width: 320px;
}

.footer-nety img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.footer-nety span {
  color: #d4deed;

  font-size: 14px;

  line-height: 1.5;
}

/* melhora o bloco de conversão */

.footer-action {
  background: rgba(255, 255, 255, 0.06);

  padding: 35px;

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-action h3 {
  font-size: 24px;
}

.footer-action p {
  color: #a8b4c7;

  line-height: 1.7;
}

/* deixa o botão principal mais premium */

.footer-whatsapp {
  background: #25d366;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.footer-call {
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* =====================================
   COOKIE BASE
===================================== */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: calc(100% - 40px);
  max-width: auto;

  background: #ffffff;
  color: #333;

  padding: 18px 22px;
  border-radius: 16px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  z-index: 9999;

  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #6c63ff;
  font-weight: 600;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-banner button {
  background: #6c63ff;
  color: white;

  border: none;
  padding: 10px 22px;

  border-radius: 8px;

  font-weight: 600;
  cursor: pointer;

  transition: 0.3s;
}

.cookie-banner button:hover {
  opacity: 0.85;
}

.cookie-link {
  font-size: 14px;
}

/* =====================================
 BOTAO WHATSAPP FLOAT NETY
===================================== */
.nety-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
}

.nety-float img {
  width: 120px;
  animation: floatNety 4s ease-in-out infinite;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}