/* ==============================
   Variáveis Globais
============================== */
:root {
  --azul-escuro: #0a192f;
  --azul-escuro-transparente: #0a192f6e;
  --azul-medio: #1e3a8a;
  --laranja: #ff6b00;
  --cinza-claro: #f5f5f7;
  --bege-quente: #f4e1c1;
  --verde-whatsapp: #25d366;
  --max-width: 1200px;
  --section-padding: 80px 20px;
}

/* ==============================
   Reset
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--azul-escuro);
  color: #fff;
  line-height: 1.6;
}


/* ==============================
   Header
============================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: var(--azul-medio);
  color: #fff;
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff ;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--laranja);
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.atendimento-btn {
  background: #fff;
  color: var(--azul-medio);
  font-size: 17px;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.5s ease-in-out;
}

.atendimento-btn:hover {
  transform: translateY(-5px);
  background: var(--laranja);
  color: #fff;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  background: var(--verde-whatsapp);
  padding: 0px 16px;
  border-radius: 50px;
  box-shadow: 0px 0px 100px 5px rgba(0, 0, 0, 0.884);
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
  gap: 10px;
}

.whatsapp-btn i {
  font-size: 30px;
}

.whatsapp-btn:hover {
  opacity: 80%;
}

a {
  text-decoration: none;
  color: #fff;
}

/* ==============================
   Menu Toggle - Hambúrguer
============================== */
.menu-toggle {
  font-family: "Inter", sans-serif;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  position: relative;
}

.menu-toggle:hover span {
  background: var(--laranja);
  transform: scaleX(1.1);
}

.menu-toggle:focus {
  outline: 2px solid var(--laranja);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Overlay escuro quando menu está aberto */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Nav links responsivo */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

/* Menu mobile estilizado */
.nav-links.mobile-active {
  position: fixed;
  top: 0;
  right: 0;
  background: var(--azul-medio);
  flex-direction: column;
  width: 280px;
  height: 100vh;
  padding: 80px 20px 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.nav-links.mobile-active.show {
  transform: translateX(0);
}

.nav-links.mobile-active .nav-link,
.nav-links.mobile-active .atendimento-btn {
  width: 100%;
  padding: 15px;
  margin: 5px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-links.mobile-active .nav-link:hover,
.nav-links.mobile-active .atendimento-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

/* Animação do ícone do hambúrguer transformando em X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
  background: var(--laranja);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
  background: var(--laranja);
}

.menu-toggle.active {
  transform: rotate(0deg);
}

.menu-toggle.active:hover span {
  background: var(--laranja);
  transform: none;
}

.menu-toggle.active span:nth-child(1),
.menu-toggle.active span:nth-child(3) {
  width: 100%;
  height: 3px;
  border-radius: 2px;
}

.menu-toggle.active span {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* Prevenir scroll quando menu está aberto */
body.menu-open {
  overflow: hidden;
}

/* ==============================
   Carrossel Responsivo
============================== */
.hero {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 500;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: grab;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-slide {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

/* Botões */
.hero .prev,
.hero .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2.5rem;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero .prev {
  left: 20px;
}
.hero .next {
  right: 20px;
}

.hero .prev:hover,
.hero .next:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

/* Indicadores */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-indicators i {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 4px;
  backdrop-filter: blur(5px);
}

.carousel-indicators i.active {
  color: var(--laranja);
  transform: scale(1.2);
}

.carousel-indicators i:hover {
  color: var(--laranja);
  transform: scale(1.1);
}

/* ==============================
   Planos
============================== */
.planos {
  padding: 100px 8%;
  background: linear-gradient(135deg, var(--azul-medio) 0%, #011135 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.planos h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--laranja);
  position: relative;
  z-index: 1;
}

.planos h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--laranja);
  border-radius: 2px;
}

.planos .mega-text {
  border-radius: 50px;
  padding: 2px 20px;
  font-weight: bold;
  background: linear-gradient(to right, var(--azul-medio), #00c6ff);
  font-size: 35px;
}

.extras {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.planos .selling {
  background: linear-gradient(
    270deg,
    var(--azul-medio),
    var(--azul-medio),
    var(--laranja)
  );
  background-size: 400% 400%;
  border-radius: 50px;
  overflow: hidden;
  animation: backgroundMove 8s ease infinite;
}

.extra {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0px 14px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 100;
  color: #fff;
  transition: all 0.5s ease-in;
}

.extra.contrato,
.extra.upload {
  background: var(--azul-escuro-transparente);
  border: 2px solid var(--azul-escuro-transparente);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* ==============================
   Cards
============================== */
.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.card {
  width: 80%;
  background: linear-gradient(145deg, var(--azul-medio), #1e40af);
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.currency{
  font-size: 16px;
}

.destaque{
  width: 90%;
}

.period{
  font-size: 16px;
}

.card:hover {
  transform: translateY(-15px) scale(1.02) !important;
}

.card:nth-child(2) {
  background: linear-gradient(145deg, var(--azul-escuro), var(--azul-medio));
  transform: scale(1.05) !important;
}

.card:nth-child(2):hover {
  transform: translateY(-15px) scale(1.08) !important;
}

.cards ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
}

.cards ul li {
  margin-bottom: 20px;
}

.cards ul i {
  color: var(--laranja);
  font-size: 20px;
}
.card .card-header i {
  font-size: 50px;
  background: linear-gradient(to top, #ccc 0%, #007bff 100%);
  background-size: 100% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: wifiColor 2s forwards, shine 2s infinite ease-in-out,
    glow 2s infinite ease-in-out;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  animation: pulse 2s infinite;
}

.card h3 {
  font-size: 70px;
  font-weight: bolder;
  height: 90px;
  background: linear-gradient(to right, #ffffff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 25px 0;
  color: var(--laranja);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.card button {
  background: linear-gradient(45deg, var(--verde-whatsapp), #22c55e);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  width: 100%;
  justify-content: center;
}

.card button:hover {
  background: linear-gradient(45deg, #22c55e, #16a34a);
  transform: translateY(-2px);
}

/* ==============================
   Diferenciais
============================== */
.diferenciais {
  padding: 80px 8%;
  text-align: center;
  overflow-x: hidden;
}
.diferenciais h2{
  font-size: 50px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.dif {
  display: flex;
  flex-direction: column;
  background: var(--azul-medio);
  padding: 30px 20px;
  border-radius: 15px;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}

.dif:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0px 0px 200px 0px var(--azul-medio);
}

.dif h5 {
  color: rgba(255, 255, 255, 0.753);
  font-size: 1.3rem;
}

.dif i {
  color: var(--laranja);
  font-size: 50px;
}


/* ==============================
   Footer
============================== */
footer {
  background: #0a192f;
  color: #fff;
  border-top: 2px solid #ff6b00;
  padding-top: 4rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container img{
  width: 150px;
  height: auto;
  border-radius: 10px;
  align-self: center;
  margin-top: 20px;
}

.footer-container p{
  text-align: center;
}
.footer-container h1{
  font-size: 3rem;
}


footer .col-left,
footer .col-right {
  flex: 1 1 300px;
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
}
footer .col-left{
  position: relative;
  bottom: 12px;
}

.footer-buttons{
  align-items: center;
  display: flex;
  flex-direction: column;
}

.footer-buttons p{
  font-weight: bold;
  font-size: 3rem;
  line-height: 50px;
  margin-bottom: 35px;
}


.footer-buttons i{
  font-size: 25px;
}

.copyright {
  display: flex;
  align-items: center;
  margin-top: 110px;
  position: relative;
  padding: 10px 20px;
  font-weight: bold;
  height: 80px; /* ajuste se quiser mais alto */
}

/* esquerda centralizada */
.left {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* direita fixa na borda */
.right {
  padding-right: 100px;
  margin-left: auto; /* empurra para a direita */
}

.sky-code strong:hover{
    color: var(--laranja);
}

.footer-buttons a {
  width: 30%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  font-weight: bold;
  background: #ff6b00;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.452);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.footer-buttons a:hover {
  background: #ffa347;
  transform: translateY(-2px);
}



@import url(/animate.css);
