body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
}

.page-wrapper {
  width: 100%;
  min-height: 100%;
  background: #FFFFFF;
}

/* Header */
.header {
  background: rgb(0, 0, 0);
  background-image: url("imagens/fundo.jpg" );
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  border-bottom: #f90201 3px solid;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.company-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
}

/* Animação flutuante para a logo */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.logo-placeholder {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f90201 0%, #000000 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon {
  fill: #FFFFFF;
  width: 30px;
  height: 30px;
}

.company-info h1 {
  margin: 0;
  font-size: 24px;
  color: #F5F5F5;
  font-weight: 700;
}

.company-info p {
  margin: 2px 0 0 0;
  font-size: 14px;
  color: #F5F5F5;
  font-weight: bold;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #f90201;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #f90201 0%, #d40000 100%);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  background: linear-gradient(135deg, #f90201 0%, #b80100 100%);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 2, 1, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* Banner Carousel */
.banner-carousel {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f5f5f5;
}

.banner-slide.active {
  opacity: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  max-width: 900px;
}

.banner-content h2 {
  font-size: 56px;
  color: #000000;
  margin: 0 0 20px 0;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(255,255,255,0.5);
}

.banner-content p {
  font-size: 22px;
  color: #000000;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(255,255,255,0.5);
}

/* Banner Info Cards Section */
.banner-info {
  background: #FFFFFF;
  padding: 40px 20px;
}

.banner-info-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.banner-info-card {
  background: #F5F5F5;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #FFE5E5;
  transition: transform 0.3s, box-shadow 0.3s;
}

.banner-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(249, 2, 1, 0.2);
  border-color: #f90201;
}

.banner-info-card h3 {
  font-size: 20px;
  color: #000000;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.banner-info-card p {
  font-size: 15px;
  color: #333333;
  margin: 0;
  line-height: 1.6;
}

.banner-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.banner-dot.active {
  background: #000000;
  width: 30px;
  border-radius: 6px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 48px;
  color: #000000;
  margin: 0 0 20px 0;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  color: #333333;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* Plans Section */
.plans {
  background: linear-gradient(0deg, #FFF 0%, #EEE 100%);
  padding: 80px 20px;
}

.plans-content {
  max-width: 1200px;
  margin: 0 auto;
}

.plans h3 {
  font-size: 42px;
  color: #000000;
  text-align: center;
  margin: 0 0 60px 0;
  font-weight: 700;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.plan-card {
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid #FFE5E5;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(249, 2, 1, 0.4);
  border-color: #f90201;
}

.plan-header {
  margin-bottom: 25px;
}

.plan-type {
  font-size: 24px;
  color: #000000;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.plan-price {
  font-size: 42px;
  color: #f90201;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.plan-label {
  font-size: 14px;
  color: #666666;
  margin-top: 5px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
  flex-grow: 1;
}

.plan-features li {
  color: #333333;
  padding: 12px 0;
  border-bottom: 1px solid #FFE5E5;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li:before {
  content: '✓';
  color: #f90201;
  font-weight: bold;
  font-size: 18px;
}

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

.plan-monthly {
  background: #FFF5F5;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.plan-monthly-text {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.plan-monthly-price {
  color: #f90201;
  font-size: 24px;
  font-weight: 700;
}

.plan-cta {
  background: linear-gradient(135deg, #f90201 0%, #d40000 100%);
  color: #FFFFFF;
  padding: 15px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 2, 1, 0.5);
}

/* Additional Services */
.additional-services {
  background: #FFFFFF;
  padding: 80px 20px;
}

.additional-services-content {
  max-width: 1200px;
  margin: 0 auto;
}

.additional-services h3 {
  font-size: 42px;
  color: #000000;
  text-align: center;
  margin: 0 0 50px 0;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.service-card {
  background: #FFFFFF;
  padding: 30px 25px;
  border-radius: 12px;
  border: 2px solid #FFE5E5;
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: #f90201;
}

.service-card h4 {
  font-size: 18px;
  color: #000000;
  margin: 0 0 15px 0;
  font-weight: 600;
  text-transform: uppercase;
}

.service-price {
  font-size: 28px;
  color: #f90201;
  font-weight: 700;
  margin: 0;
}

.service-note {
  padding: 20px;
  text-align: center;
}

.service-note p {
  margin: 0;
  color: #f90101ab;
  font-size: 16px;
  font-weight: 600;
}

/* App Section */
.app-section {
  background: linear-gradient(180deg,#EEE 50%, #FFF 100%);
  padding: 80px 20px;
}

.app-content {
  max-width: 1200px;
  margin: 0 auto;
}

.app-section h3 {
  font-size: 42px;
  color: #000000;
  text-align: center;
  margin: 0 0 60px 0;
  font-weight: 700;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  align-items: start;
}

.app-video h4, .app-download h4 {
  font-size: 22px;
  color: #000000;
  margin: 0 0 25px 0;
  font-weight: 600;
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #F5F5F5;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  margin-bottom: 2em;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* YouTube fallback (aparece quando a página é aberta via file://)
   - mostra thumbnail clicável que abre o vídeo no YouTube
*/
.youtube-fallback {
  max-width: 100%;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  position: relative;
}

.youtube-fallback img {
  width: 100%;
  height: auto;
  display: block;
}

.youtube-fallback a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.youtube-fallback div {
  background: rgba(0,0,0,0.85);
  color: #ffffff;
  padding: 10px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.youtube-fallback:hover {
  transform: translateY(-4px);
  transition: transform 0.18s ease-out;
}

/* Play icon overlay */
.youtube-fallback a {
  position: relative;
}

.youtube-fallback a::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  transition: transform 0.18s, background 0.18s;
  z-index: 5;
}

.youtube-fallback a::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  z-index: 6;
}

.youtube-fallback:hover a::before {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(0,0,0,0.75);
}

.video-subtitle {
  text-align: center;
  color: #333333;
  font-size: 16px;
  margin: 20px 0 0 0;
  font-style: italic;
}

.app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 16px;
  border: 2px solid #FFE5E5;
}

.restricted-area-btn {
  background: linear-gradient(135deg, #f90201 0%, #d40000 100%);
  color: #FFFFFF;
  padding: 15px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  display: inline-block;
}

.restricted-area-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 2, 1, 0.5);
}

.download-text {
  color: #333333;
  font-size: 16px;
  margin: 0 0 25px 0;
  text-align: center;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 300px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F5F5F5;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid #FFE5E5;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 2, 1, 0.3);
  border-color: #f90201;
}

.download-btn svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  color: #f90201; /* ícone usa a cor do texto (currentColor) */
}

.download-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-label {
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.download-app-name {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
}

/* Contact Section */
.contact {
  background: #F5F5F5;
  padding: 80px 20px;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact h3 {
  font-size: 42px;
  color: #000000;
  margin: 0 0 40px 0;
  font-weight: 700;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.contact-card {
  /* background: #0b0b0b; /* fundo mais escuro para os cards de contato 
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, border-color 0.3s; */

  background: #0b0b0be3;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #2D3748;
    transition: transform 0.3s, border-color 0.3s;
    opacity: 0.95;

}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #0b0b0b;
}

.download-btn:hover svg {
  color: #d40000;
}
.contact-icon {
  width: 60px;
  height: 60px;
  /* background: linear-gradient(135deg, #f90201 0%, #d40000 100%); */
  border: 2px solid #2D3748;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon svg {
  fill: #FFFFFF;
  width: 30px;
  height: 30px;
}

.contact-card h4 {
  font-size: 18px;
  color: #FFFFFF; /* título em branco para contraste com o fundo escuro */
  margin: 0 0 15px 0;
  font-weight: 600;
}

.contact-card p {
  margin: 0;
  color: #DADADA; /* texto secundário mais claro sobre fundo escuro */
  font-size: 15px;
  line-height: 1.6;
}

.contact-card a {
  color: #DADADA; /* mantém o destaque com a cor primária */
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s, opacity 0.2s;
}

.contact-card a:hover {
  color: #DADADA;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: #111;
  padding: 30px 20px;
  text-align: center;
  border-top: 2px solid #2D3748;
  opacity: 0.95;
}

.footer p {
  margin: 0;
  color: #FFFFFF;
  font-size: 14px;
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-nav {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .banner-carousel {
    height: 400px;
  }

  .banner-slide {
    background-size: contain;
  }

  .banner-content h2 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 18px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .plans h3, .additional-services h3, .contact h3, .app-section h3 {
    font-size: 32px;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .company-logo {
    height: 50px;
  }

  .plans-grid, .services-grid, .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .app-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-wrapper {
    padding-bottom: 56.25%;
  }
}
