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

:root {
  --primary-blue: #156a8e;
  --dark-blue: #00235d;
  --cyan: #34dde4;
  --bright-blue: #015edf;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
#header {
  box-sizing: border-box;
  height: 70px;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

#container-menu {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  margin: 0 auto;
}

.header-scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 35, 93, 0.3);
}

/* #nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
} */

#btn-mobile {
  display: none;
}

#logo {
  display: inline-block;
  padding: 0;
  margin: 0;
  line-height: 0;
  height: auto;
}

#menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

#menu a {
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  /* position: relative; */
}

#menu a:hover {
  color: var(--cyan);
  transform: translateY(-2px);
}

#menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
}

#menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--bright-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(52,221,228,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: gridMove 8s linear infinite alternate;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(10px, 80px);
  }
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--cyan), var(--bright-blue));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(52, 221, 228, 0.3);
  animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(52, 221, 228, 0.5);
}

/* Vantagens Section */
.vantagens {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #00235d;
  margin-bottom: 3rem;
  font-weight: 700;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vantagem-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 35, 93, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.vantagem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 35, 93, 0.2);
  border-color: var(--cyan);
}

.vantagem-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  display: block;
}

.vantagem-card h3 {
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.vantagem-card p {
  color: #666;
  line-height: 1.6;
}

/* Planos Section */
.planos {
  padding: 6rem 0;
  background: var(--dark-blue);
  color: white;
}

.planos .section-title {
  color: #fff;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.plano-card {
  background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.plano-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.plano-card:hover::before {
  left: 100%;
}

.plano-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(52, 221, 228, 0.3);
}

.plano-popular {
  border: 2px solid var(--cyan);
  transform: scale(1.05);
}

.plano-popular::after {
  content: 'MAIS POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--dark-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plano-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.plano-speed {
  font-size: 3rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.plano-price {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.plano-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plano-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plano-features li:last-child {
  border-bottom: none;
}

.plano-btn {
  background: var(--cyan);
  color: var(--dark-blue);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.plano-btn:hover {
  background: white;
  transform: scale(1.05);
}

/* Contact Section */
.contato {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contato-info h3 {
  font-size: 2rem;
  color: var(--dark-blue);
  margin-bottom: 2rem;
  font-weight: 600;
}

.contato-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contato-item i {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-right: 1rem;
  width: 30px;
}

.cta-contato {
  background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue)); 
  border-radius: 20px; 
  padding: 3rem; 
  text-align: center; 
  color: white
}

.cta-contato h3 {
  font-size: 2rem; 
  margin-bottom: 1rem;
}

.cta-contato p {
  font-size: 1.2rem; 
  margin-bottom: 2rem; 
  opacity: 0.9;
}

.cta-contato button {
  background: white; 
  color: #0099CC;
  background: var(--cyan);
  color: var(--dark-blue);
  border: none; 
  padding: 1rem 2rem; 
  border-radius: 50px; 
  font-size: 1.1rem; 
  font-weight: bold; 
  cursor: pointer; 
  transition: all 0.3s ease;
}

.cta-contato button:hover {
  scale: 1.2;
  background: white; 
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #388E3C;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    transform: scale(1);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  #container-menu {
    padding: 0 1rem;
  }
  #menu {
    display: block; 
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;
    background: #222;
    height: 0px;
    transition: .6s;
    z-index: 1000;
    visibility: hidden;
    overflow-y: hidden;
  }

  #nav.active #menu {
    height: 30vh;
    visibility: visible;
  }

  #btn-mobile {
    display: flex;
    font-size: 1.2rem;
    align-items: center;
    font-family: 'Poppins';
    border: none;
    background: none;
    cursor: pointer;
    color: #fff;
    gap: .5rem;
  }

  #hamburger {
    display: block;
    width: 28px;
    border-top: 3px solid;
    color: white;
  }

  #hamburger::after, #hamburger::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: currentColor;
    margin-top: 5px;
    transition: .3s;
    position: relative;
  }

  #nav.active #hamburger {
    border-top-color: transparent;
  }

  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }

  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }

  #menu a {
    padding: 1rem 0 ;
    text-align: center;
    font-size: 18px;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 153, 204, .3);
    -webkit-tap-highlight-color: transparent;
  }

   #menu a:hover {
    color: none;
    transform: none;
  }

  #menu a::after,
  #menu a:hover::after {
    content: none;
    width: 0;
    height: 0;
    background: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .contato-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    padding: 0.8rem 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

   .plano-card {
    order: 2;
  }

  .plano-popular {
    order: 1;
  }

  .planos {
    padding: 2rem 0;
  }
}

/* Footer */
footer {
  background: var(--dark-blue);
  color: white;
  text-align: center;
  padding: 2rem 0;
}

footer p {
  opacity: 0.8;
}

/* MODAL */

.swal2-timer-progress-bar {
  background: #015edf;
}