
:root {
    /* Cores Principais */
    --boddy: #eae7e6;
    --primary: #2c5aa0;
    --secondary: #00a8ff;
    --accent: #ff6b00;
    
    /* Cores de Texto */
    --text: #000000;
    --text-light: #000000;
    
    /* Cores de Fundo */
    --dark: #000000;
    --light: #f8f9fa;
    --white: #fff;
    --gray: #6c757d;
    
    /* Cores Específicas por Seção */
    --header-bg: #ffffff;
    --header-text: #333333;
    --header-text-2: ;
    --header-text-3: ;
    
    --menu-bg: #f0f2f4;
    --menu-text: #2c5aa0;
    --menu-text-over: #389ae5;
    
    
    --hero-bg: #0000ff;
    --hero-text: #186dc9;
    --hero-text-2: #186dc9;
    --hero-text-3: ;
    
    --plans-bg: #186dc9;
    --plans-text: #fbf9f9;
    --plans-text-2: #eeeeee;
    --plans-text-3: #cccccc;
    --plans-card-bg: #f8f7f7;
    --plans-card-text: #186dc9;
    --plans-card-valor: #0d0d0d;
    --plans-card-mbps: #ff4b1f;
    --plans-card-featured: #ff4b1f;
    --plans-card-featured-text: #f8f7f7;
    
    --about-bg: #f8f7f7;
    --about-text: #186dc9;
    --about-text-2: #186dc9;
    --about-text-3: #186dc9;
    
    --coverage-bg: #186dc9;
    --coverage-text: #f8f7f7;
    --coverage-text-2: #f8f7f7;
    --coverage-text-3: #f8f7f7;
    
    --why-bg: #eae7e6;
    --why-text: #186dc9;
    --why-text-2: #186dc9;
    --why-text-3: #928787;
    
    --faq-bg: #eae7e6;
    --faq-text: #186dc9;
    --faq-text-2: #186dc9;
    --faq-text-3: #186dc9;
    
    --contact-bg: #186dc9;
    --contact-text: #eae7e6;
    --contact-text-2: #eae7e6;
    --contact-text-3: #eae7e6;
    
    --footer-bg: #333333;
    --footer-text: #ffffff;
    --footer-text-2: #eeeeee;
    --footer-text-3: #cccccc;
    
    --button-primary: #186dc9;
    --button-primary-text: #fff5f5;
    --button-primary-over: #73a9e2;
    --button-secondary: #74838b;
    --button-secondary-text: #ebedf0;
    --button-secondary-over: #71a8c6;
    
    /* Variáveis de Design */
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            background-color: var(--boddy);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .section-title .highlight {
            color: var(--primary-color);
            position: relative;
        }

        .section-title .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent-color);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 30px;
            background: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        .btn-accent {
            background: var(--accent-color);
        }

        .btn-accent:hover {
            background: #e55a00;
        }

/* Header */
.top-bar {
	background-color: #000;
	color: var(--white);
	padding: 8px 0;
	font-size: 14px;
}
.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.top-bar-contact {
	display: flex;
	gap: 20px;
}
.top-bar-contact i {
	margin-right: 6px;
}
.top-bar-social {
	display: flex;
	gap: 15px;
}
.top-bar-social a {
	color: var(--white);
	font-size: 18px;
}
/* Reset e básicos */
* {
  box-sizing: border-box;
}

/* Header básico */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: nowrap; /* impede quebra de linha */
  gap: 10px;
}

.logo img {
  height: 50px;
  max-width: 100%;
  object-fit: contain;
}

/* Menu principal */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-weight: 600;
  color: #222323;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--secondary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Header actions (botões desktop) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0; /* evita encolher */
}

.header-actions .top-btn-outline {
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #ff9800;
  color: #ff9800;
  background: transparent;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-actions .top-btn-outline:hover {
  background: #ff9800;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.header-actions .top-btn-primary {
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  background: linear-gradient(135deg, #ff9800, #ffb74d);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-actions .top-btn-primary:hover {
  background: linear-gradient(135deg, #ffb74d, #ffa000);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

/* Botão menu mobile */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #ff9800;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* não deixa encolher */
}

/* Classes para controle de visibilidade */
.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-flex;
}

/* Mobile: quando a largura for menor ou igual a 991px */
@media (max-width: 991px) {
  /* Mostrar botão menu mobile */
  .mobile-menu-btn {
    display: inline-flex;
  }

  /* Esconder botões desktop */
  .desktop-only {
    display: none !important;
  }

  /* Mostrar links mobile no menu */
  .mobile-only {
    display: list-item !important;
  }

  /* Menu empilhado verticalmente */
  .nav-menu {
    flex-direction: column;
    gap: 10px;
    width: 100%; /* para ocupar toda largura */
  }

  /* Ajusta o container header para que logo e botão fiquem alinhados na mesma linha */
  .header .container {
    flex-wrap: nowrap; /* tira wrap pra logo e botão alinharem */
    gap: 10px;
  }

  /* Esconder os links em header-actions e deixar só o botão do menu */
  .header-actions {
    width: auto;
    justify-content: flex-end;
  }

  /* Ajusta a logo para não empurrar o botão */
  .logo img {
    height: 40px;
    max-width: 70%;
  }
}
/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
  }

  .top-bar-contact {
    margin-bottom: 10px;
  }

  .top-bar-social {
    margin-bottom: 10px;
  }

  /* Escondendo links extras em telas grandes */
  .desktop-only {
    display: none;
  }

  /* Exibindo os links extras apenas em dispositivos móveis */
  .mobile-only {
    display: block;
  }

  .nav-menu {
    display: none; /* Esconde o menu por padrão */
  }

  .mobile-menu-btn {
    display: block; /* Mostra o botão do menu hamburguer */
  }

  .nav-menu.active {
    display: block; /* Exibe o menu quando ativo */
  }
}

.logo img {
  max-width: 150px;
}

@media (max-width: 768px) {
  .logo img {
    max-width: 120px; /* Ajuste no tamanho do logo */
  }
}


        /* Quick Actions */

.quick-actions {
    position: relative;
    z-index: 2;
    margin-top: -70px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.action-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

        .action-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .action-item a {
            text-decoration: none;
            color: var(--hero-text-2);
        }

        .action-item i, .action-item svg {
            font-size: 3rem;
            color: var(--hero-text-2);
            margin-bottom: 15px;
        }

        .action-item svg {
            width: 60px;
            height: 60px;
            color: var(--hero-text-2);
        }

        .action-item h3 {
            font-size: 1rem;
            margin-bottom: 0;
            color: var(--hero-text);
        }

        /* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--why-bg);
    text-align: center;
    color: var(--why-text);
}

.features-section .section-title {
    color: var(--why-text);
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.features-section .highlight {
    color: #007bff;
}

/* GRID PRINCIPAL — 4 POR LINHA */
.features-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* CARD */
.feature-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ÍCONE */
.feature-icon {
    width: 70px;
    height: 70px;
    color: var(--why-text-2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.feature-icon i {
    font-size: 80px;
    margin-top: 5px;
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    fill: #007bff;
}

/* TEXTO */
.feature-card h3 {
    color: var(--why-text-3);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--why-text-2);
    line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Plans Section */
.plans-section {
            padding: 80px 0;
            background-color: var(--plans-bg);
            color: var(--light-color);
        }

.plans-grid {
    display: flex;
    gap: 20px; /* espaçamento entre os cards */
    justify-content: center;
}

        .plan-card {
            background: var(--plans-card-bg);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .plan-card.featured {
         background: var(--plans-card-featured);
         color: var(--plans-card-featured-text);
}
        /* Sobrescrevendo os filhos para não herdarem do estilo normal */
.plan-card.featured .plan-speed,
.plan-card.featured .plan-price,
.plan-card.featured .plan-features p,
.plan-card.featured .plan-note,
.plan-card.featured .plan-header h3,
.plan-card.featured .plan-header p,
.plan-card.featured .plan-button,
.plan-card.featured i {
    color: inherit !important; /* força herança do .featured */
}


        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .plan-header {
            margin-bottom: 30px;
        }

        .plan-speed {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--plans-card-mbps);
            margin-bottom: 0;
        }

        .plan-type {
            font-size: 1.5rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .plan-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--plans-card-valor);
        }

        .plan-technology {
            margin-bottom: 30px;
        }

        .plan-technology img {
            height: 50px;
            margin-bottom: 10px;
        }

        .plan-technology h5 {
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .plan-features {
            margin-bottom: 30px;
        }

        .plan-features p {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            color: var(--plans-card-text);
        }

        .plan-features p:last-child {
            border-bottom: none;
        }

        .plan-button {
            display: inline-block;
            background-color: var(--plans-bg);
            color: var(--white);
            padding: 15px 40px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            margin-bottom: 15px;
        }

        .plan-button:hover {
            background: #e55a00;
            transform: scale(1.05);
        }

        .plan-note {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 0;
        }

        .disclaimer {
            text-align: center;
            color: var(--white);
            font-style: italic;
            margin-top: 20px;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
			background: var(--about-bg);
			color: var(--about-text);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--about-text);
        }
        
        .about-text h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--about-text-3);
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: var(--about-text-2);
        }

        .about-image img {
            width: 100%;
            
        }

    /* Coverage Section Styles */
    .coverage-section {
        background: var(--coverage-bg);
        padding: 80px 0;
        color: var(--white);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .coverage-content {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 50px;
        align-items: center;
    }

    .coverage-text h2 {
        color: var(--coverage-text);
        margin-bottom: 20px;
        font-size: 2rem;
    }

    .coverage-description {
        line-height: 1.8;
        margin-bottom: 30px;
        font-size: 1.1rem;
        color: var(--coverage-text);
    }

    .localidades-list h4 {
        color: var(--coverage-text-3);
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .localidades-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }

    .localidade-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 0;
    }

    .localidade-item i {
        color: var(--coverage-text-3);
        font-size: 0.9rem;
    }

    .localidade-item p {
        color: var(--coverage-text-3);
        margin: 0;
        font-size: 1rem;
    }

    .localidade-item span {
        color: var(--coverage-text-3);
    }

    .coverage-map img {
        border-radius: 10px;
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .coverage-section {
            padding: 50px 20px;
        }

        .coverage-content {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

        .coverage-text h2 {
            font-size: 1.5rem;
        }

        .coverage-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .localidades-grid {
            grid-template-columns: 1fr;
        }

        .localidade-item {
            justify-content: center;
            flex-direction: row;
            gap: 6px;
            padding: 6px 0;
        }

        .localidade-item p {
            font-size: 0.95rem;
        }

        .localidade-item i {
            font-size: 1rem;
        }

        .coverage-map img {
            margin: 0 auto;
            max-width: 100%;
            height: auto;
        }
    }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
			background: var(--faq-bg);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-header h2 {
            font-size: 1rem;
            color: var(--faq-text);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .faq-header h3 {
            color: var(--faq-text-2);
            font-size: 2.5rem;
            
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            box-shadow: var(--box-shadow);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: var(--primary-color);
            border: none;
            padding: 20px 25px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--faq-text-3);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--primary-color);
        }

        .faq-icon {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--faq-text-3);
            min-width: 20px;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer p {
            padding: 0 25px 20px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* Invoice Section */
        .invoice-section {
            padding: 10px 0;
            background: var(--footer-bg);
            color: var(--white);
        }

        .invoice-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .invoice-content h2 {
            margin-bottom: 0;
            color: var(--white);
        }

        .invoice-button {
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            padding: 15px 30px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            transition: var(--transition);
        }

        .invoice-button:hover {
            background: rgba(90, 90, 0, 0.8); /* ajustando a opacidade para escurecer a cor */
            transform: translateY(-2px);
        }

/* Contact Section */
.contact-section {
  background: var(--contact-bg);
  padding: 80px 20px;
  color: var(--white);
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 320px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--contact-text);
}

.contact-subtitle {
  color: #555;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: var(--contact-text-2);
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.detail-item i {
  font-size: 22px;
  color: var(--contact-text-2);
  margin-top: 5px;
}

.detail-item h4 {
  margin: 0;
}

.detail-item p {
  margin: 3px 0;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
  margin-top: 25px;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #333;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-row input {
  flex: 1;
  min-width: 220px; /* Garante que os inputs não fiquem muito pequenos em telas menores */
}

input, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  background: #fdfdfd;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #0073e6;
  outline: none;
  background: #fff;
}

textarea {
  resize: vertical; /* Permite que o usuário ajuste o tamanho do campo de mensagem */
}

.submit-button {
  background: #0073e6;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.submit-button:hover {
  background: #005bb5;
}

.submit-button:active {
  background: #004080; /* Um feedback de cor mais escura no clique */
}


/* Mensagens do formulário */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Botão loading */
#btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Validação do formulário */
input:invalid, textarea:invalid {
    border-color: #dc3545;
}

input:valid, textarea:valid {
    border-color: #28a745;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px; /* Adiciona mais espaço entre as seções */
  }

  .contact-form {
    margin-top: 30px;
  }

  .form-row {
    flex-direction: column; /* Empilha os campos em dispositivos móveis */
  }

  .form-row input {
    min-width: 100%; /* Garante que os inputs ocupem toda a largura */
  }
}

        /* Footer */
.main-footer {
  background: var(--footer-bg);
  color: #fff;
  text-align: center;
  padding: 50px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-logo img {
  max-width: 260px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a {
  color: #fff;
  font-size: 22px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: #00a8ff;
  transform: scale(1.2);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-credit img {
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-credit img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 15px 25px;
  }

  .footer-social a {
    font-size: 20px;
  }

  .footer-logo img {
    max-width: 200px;
  }
}


/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .whatsapp-content {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 300px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transform: scale(0);
            transform-origin: bottom right;
            transition: var(--transition);
            opacity: 0;
        }

        .whatsapp-content.show {
            transform: scale(1);
            opacity: 1;
        }

        .whatsapp-header {
            background: var(--primary-color);
            color: var(--hero-text);
            padding: 20px;
            border-radius: 15px 15px 0 0;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
        }

        .close-button {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
        }

        .profile-image {
            width: 50px;
            height: 50px;
            background: var(--hero-text);
            border-radius: 50%;
            position: relative;
        }

        .profile-image::after {
            content: '';
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 12px;
            height: 12px;
            background: #4cd964;
            border: 2px solid var(--white);
            border-radius: 50%;
        }

        .profile-info p {
            margin-bottom: 0;
        }

        .profile-name {
            font-weight: 600;
        }

        .profile-subtitle {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .whatsapp-message {
            padding: 20px;
            position: relative;
        }

        .typing-indicator {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }

        .typing-indicator span {
            width: 8px;
            height: 8px;
            background: #ccc;
            border-radius: 50%;
            animation: typing 1.4s infinite ease-in-out;
        }

        .typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
        .typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

        @keyframes typing {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1); }
        }

        .message-bubble {
            background: #f1f1f1;
            padding: 15px;
            border-radius: 15px 15px 15px 0;
        }

        .message-name {
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .message-body {
            margin-bottom: 5px;
            color: var(--text-light);
        }

        .message-time {
            font-size: 0.8rem;
            color: #999;
            text-align: right;
        }

        .whatsapp-action {
            padding: 20px;
            border-top: 1px solid #eee;
        }

        .whatsapp-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #25d366;
            color: var(--white);
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: 600;
            transition: var(--transition);
        }

        .whatsapp-button:hover {
            background: #128c7e;
            transform: scale(1.05);
        }

        .whatsapp-toggle {
            width: 60px;
            height: 60px;
            background: #25d366;
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
        }

        .whatsapp-toggle:hover {
            background: #128c7e;
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-content,
            .coverage-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .contact-info {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .main-navigation .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .action-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .plans-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .invoice-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-bottom {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 20px;
            }

            .whatsapp-content {
                width: 280px;
                right: -50px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .top-bar-content {
                flex-direction: column;
                gap: 10px;
            }

            .hero-section {
                height: 400px;
            }

            .action-grid {
                grid-template-columns: 1fr;
            }

            .plan-card {
                padding: 20px;
            }

            .contact-form {
                padding: 20px;
            }

            .whatsapp-content {
                width: 250px;
                right: -80px;
            }
        }
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botões de navegação */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.6);
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.nav-btn.prev { left: 20px; }
.nav-btn.next { right: 20px; }

/* Indicadores (bolinhas) */
.indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.indicators .dot.active {
    background: #fff;
}


