/* ========================================
   1. VARIÁVEIS GLOBAIS (fácil manutenção)
   ======================================== */
:root {
  /* Cores da marca */
  --color-primary: #FB691C;
  --color-primary-dark: #FB691C;
  --color-accent: #FB691C;
  --color-text: #1e1e1e;
  --color-text-light: #555;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f8f8;
  --color-white: #ffffff;

  /* Tipografia */
  --font-family: 'Tahoma';
  --font-size-base: 16px;

  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --radius-full: 50%;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);

  /* Transições */
  --transition: all 0.3s ease;
}

/* ========================================
   2. RESET E BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* ========================================
   3. COMPONENTES REUTILIZÁVEIS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-xs);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

/* ========================================
   4. HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 100;
  padding: 1rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}
.logo span { color: var(--color-primary-dark); }

.nav__list {
  display: flex;
  gap: var(--spacing-md);
}

.nav__link {
  font-weight: 500;
  transition: var(--transition);
}
.nav__link:hover { color: var(--color-primary); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-primary);
}

/*HEADER ATUALIZADO BOOTSTRAP*/
/* ===== HEADER ===== */
.site-header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- Linha superior --- */
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__logo img {
  height: 70px;
  width: auto;
  display: block;
}

.header__contacts {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header__contact i {
  color: #d93025; /* vermelho/laranja da marca */
  font-size: 1.2rem;
}

.header__contact:hover {
  color: #d93025;
}

.header__socials {
  display: flex;
  gap: 1rem;
}

.header__social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #d93025;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.header__social:hover {
  background: #d93025;
  color: #fff;
}

/* --- Linha inferior --- */
.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.header__menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.header__menu a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}

.header__menu a:hover,
.header__menu a.active {
  color: #d93025;
}

.header__menu a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d93025;
}

.btn-client {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #d93025;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}

.btn-client:hover {
  background: #b5261d;
  transform: translateY(-2px);
  color: #fff;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .header__top {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__contacts {
    gap: 1.5rem;
  }

  .header__bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .header__menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .header__contacts {
    flex-direction: column;
    gap: 0.5rem;
  }

  .header__menu {
    gap: 1rem;
  }
}


/* BOTAO PLAY RÁDIO */
.header__radio{
    display:flex;
    align-items:center;
    gap:20px;
    margin-left:30px;
}

.radio-info{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
}

.radio-info i{
    font-size:30px;
    color:#ff3b30;
}

.radio-title{
    display:block;
    font-weight:700;
    font-size:15px;
}

.radio-info small{
    color:#ff3b30;
    font-weight:bold;
}

.radio-btn{
  display:flex;
  justify-content: space-around;
  align-items:center;
  min-width: 170px;
  background:#d93025;

  color:#fff;
  border:none;
  border-radius:30px;
  
  padding:10px 18px;
  cursor:pointer;
  font-weight:600;
  transition:.3s;
}

.radio-btn:hover{
    background:#b40000;
    transform:translateY(-2px);
}

.radio-btn i{
    font-size:18px;
}


/* btn new radio */
/* .player-wrapper {
    width: 250px;
    height: 35px;
    overflow: hidden;
    background: #fff;
    position: relative;
} */

/* .player-wrapper iframe {
    position: absolute;
    width: 280px;
    height: 35px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border: 1px solid;
} */

/* ========================================
   5. HERO
   ======================================== */

 /* .hero {
 min-height: 74vh;
  display: flex;
  align-items: center; 
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}  */

 /* .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(251,105,28,0.3) 0%, transparent 50%);
}  */

.hero__content {
  position: relative;
  z-index: 1;
  width: 0px;
} 

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}
.hero__title span {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

/* ========================================
   6. BENEFÍCIOS E AO VIVO
   ======================================== */
.benefits {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-alt);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-md);
}

.benefit-card {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-card__icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-primary-dark);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 20px 50px rgba(0,0,0,.18); */
}

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

/* ========================================
   6. BENEFÍCIOS E AO VIVO
   ======================================== */
#ao-vivo{
    padding:200px 0px 100px 0px;
    background:#fefefe;
    
}

#ao-vivo .video-wrapper{
    max-width:1200px;
    margin:auto;
    border-radius:18px;
    overflow:hidden;
    /* box-shadow:0 20px 50px rgba(0,0,0,.35); */
}

#ao-vivo .video-wrapper iframe{
    display:block;
    width:100%;
    height:600px;
    border:0;
    border-radius:18px;
}

#ao-vivo iframe{
    width:100%;
    aspect-ratio:16/9;
    border:0;
}

#videoCarousel {
    position: relative;
}

#videoCarousel .carousel-control-prev,
#videoCarousel .carousel-control-next {
    width: 60px;
    opacity: 1;
}

#videoCarousel .carousel-control-prev {
    left: -80px;
}

#videoCarousel .carousel-control-next {
    right: -80px;
}

#videoCarousel .carousel-control-prev-icon,
#videoCarousel .carousel-control-next-icon {
    border-radius: 50%;
    padding: 22px;
}

/* ===========================
   CLIENTES
=========================== */

#clientes{

    padding:45px 0;

    background:
        linear-gradient(rgba(8,8,8,.88),rgba(8,8,8,.88)),
        url("imgs/clientes/fundo-clientes.jpg") center center/cover;

    overflow:hidden;
}

#clientes .section-title{

    color:#fff;
    text-align:center;
    font-size:32px;
    margin-bottom:35px;
}

.logos-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    justify-content: center
}

.logos-track{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:70px;
    height:170px;
    width:max-content;
    animation: logos 35s linear infinite;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.logos-track img{
    width:180px;
    height:100px;
    object-fit:contain;
    filter:grayscale(0%);
    opacity:.8;
    transition:.3s;
}

.logos-track img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}





@keyframes logos{
    from{
        transform: translate3d(0,0,0);
    }
    to{
        transform: translate3d(-50%,0,0);
    }
}

/* ========================================
   7. PLANOS
   ======================================== */
.plans {
  padding: var(--spacing-xl) 0;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.plan-card {
  background: var(--color-white);
  border: 2px solid #eee;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.plan-card--highlight {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, #fff 0%, #fff5ef 100%);
  transform: scale(1.03);
}
.plan-card--highlight:hover { transform: scale(1.03) translateY(-8px); }

.plan-card a {
  color: white;
} 

.plan-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-card__name {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-xs);
}

.plan-card__speed {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}
.plan-card__speed span {
  font-size: 1.2rem;
  font-weight: 500;
}

.plan-card__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: var(--spacing-sm) 0;
}
.plan-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.plan-card__features {
  margin: var(--spacing-md) 0;
  text-align: left;
}
.plan-card__features li {
  padding: 6px 0;
  color: var(--color-text-light);
}

/* ========================================
   8. SOBRE
   ======================================== */
.about {
  padding: 200px 50px 200px 50px;
  background: var(--color-bg-alt);
}

.about__inner { max-width: 800px; margin: 0 auto; }

.about__text {
  font-size: 1.1rem;
  text-align: center;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================
   9. CONTATO E MAPA
   ======================================== */

#contato { 
  display: flex;
  padding: 100px;
}   

.contact {
  padding: var(--spacing-xl) 0;
}

.contact__inner { max-width: 600px; margin: 0 auto; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-form button {
  color: white;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

#localizacao { 
  padding-top: 50px;
      width: stretch;
}


/* MAPA */

.mapa-wrapper{
    width:100%;
    height:450px;
    overflow:hidden;
    border-radius:15px;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
}
/* ========================================
   10. FOOTER
   ======================================== */
.footer {
  background: #FB691C;
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer__contact ul { 
  padding: initial;
}

.footer h4 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

.footer a {
  color: #fff;
  transition: var(--transition);
}
/* .footer a:hover { color: var(--color-primary); } */

.footer ul li { margin-bottom: 8px; }

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  font-size: 1.5rem;
}

.footer__bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid #ff9861;
  color: #ffffff;
  font-size: 0.9rem;
}

/* ========================================
   11. WHATSAPP FLUTUANTE
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ========================================
   12. RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {

  #contato { 
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
  }
  
  .mapa-wrapper{
      height:280px;
  }
   
  .menu-toggle { display: block; }
  
  .nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  .nav.active { transform: translateY(0); }
  
  .nav__list {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .header__actions .btn--outline { display: none; }
  
  .plan-card--highlight { transform: scale(1); }
  .plan-card--highlight:hover { transform: translateY(-8px); }


    /* Evita qualquer conteúdo criando scroll horizontal */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Todos os elementos respeitam a largura disponível */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    img,
    video,
    iframe {
        max-width: 100%;
    }

}
