
: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: #b3a2a2;
    --hero-text: #935858;
    --hero-text-2: ;
    --hero-text-3: ;
    
    --plans-bg: #eae7e6;
    --plans-text: #ff4b1f;
    --plans-text-2: #eeeeee;
    --plans-text-3: #cccccc;
    --plans-card-bg: #f8f7f7;
    --plans-card-text: #121212;
    --plans-card-valor: #8a7b7b;
    --plans-card-mbps: #ff4b1f;
    --plans-card-featured: #ff4b1f;
    --plans-card-featured-text: #f8f7f7;
    
    --about-bg: #ff4b1f;
    --about-text: #eae7e6;
    --about-text-2: #eae7e6;
    --about-text-3: #eae7e6;
    
    --coverage-bg: #eae7e6;
    --coverage-text: #171716;
    --coverage-text-2: #ff4b1f;
    --coverage-text-3: #ff4b1f;
    
    --why-bg: #ff4b1f;
    --why-text: #eae7e6;
    --why-text-2: #eae7e6;
    --why-text-3: #eae7e6;
    
    --faq-bg: #eae7e6;
    --faq-text: #186dc9;
    --faq-text-2: #186dc9;
    --faq-text-3: #186dc9;
    
    --contact-bg: #ff4b1f;
    --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: #b9c0ca;
    --button-primary-text: #fff5f5;
    --button-primary-over: #73a9e2;
    --button-secondary: #00a8ff;
    --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;
}
body {
	font-family: 'Montserrat', sans-serif;
	color: var(--text);
	line-height: 1.6;
	background-color: var(--boddy);
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}
p {
	margin-bottom: 1rem;
}
a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}
img {
	max-width: 100%;
	height: auto;
}
.container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}
.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	font-family: inherit;
}
.btn-primary {
	background-color: var(--secondary);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--secondary-dark);
}
.btn-outline {
	background-color: transparent;
	color: var(--secondary);
	border: 2px solid var(--secondary);
}
.btn-outline:hover {
	background-color: var(--secondary);
	color: var(--white);
}
.btn-light {
	background-color: var(--white);
	color: var(--primary);
}
.btn-light:hover {
	background-color: var(--light);
}
.section {
	padding: 60px 0;
}
.section-title {
	text-align: center;
	margin-bottom: 40px;
}
.section-title h2 {
	font-size: 2.5rem;
	color: #222323;
	letter-spacing: 4px;
	margin-bottom: 10px;
}
.fatura {
	background-color: #000;
	padding: 0px 0;
}
.fatura-title {
	text-align: center;
	margin-bottom: 40px;
}
.fatura-title h2 {
	font-size: 2.5rem;
	color: var(--primary);
	letter-spacing: 4px;
	margin-bottom: 10px;
}
/* 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%;
  }
}



/* Hero Section */
.hero {
	background: linear-gradient(90deg, rgba(15,95,115,0.9), rgba(15,95,115,0.7)), url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1400&q=60') center/cover no-repeat;
	color: var(--white);
	padding: 80px 0 40px;
	position: relative;
}
.hero-slider {
	position: relative;
	height: 500px;
	overflow: hidden;
}
.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
}
.hero-slide.active {
	opacity: 1;
}
.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-content {
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 2;
}
.hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	font-weight: 800;
}
.hero p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.hero-badge {
	background: rgba(255,255,255,0.1);
	padding: 10px 20px;
	border-radius: 30px;
	display: inline-block;
	margin-bottom: 20px;
	font-weight: 600;
}
.hero-plan {
	background: rgba(255,255,255,0.95);
	color: var(--primary);
	padding: 12px 20px;
	border-radius: 10px;
	display: inline-block;
	font-weight: 800;
	margin-right: 10px;
	margin-bottom: 20px;
}
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.5);
	color: var(--white);
	border: none;
	padding: 12px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	z-index: 10;
}
.slider-nav.prev {
	left: 20px;
}
.slider-nav.next {
	right: 20px;
}
.slider-nav:hover {
	background: rgba(0,0,0,0.7);
}
/* Quick Features */
.quick-features {
	background: transparent; /* deixa transparente para não cobrir o banner */
	padding: 60px 0;
	position: relative;
	margin-top: -160px; /* ajusta quanto quer subir os cards */
	z-index: 10;
}
.quick-features .container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 30px;
	position: relative;
	z-index: 20;
}
.feature-item {
	background: #fff;
	padding: 30px 20px;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.1);
	text-align: center;
	flex: 1 1 250px;
	transition: transform 0.3s, box-shadow 0.3s;
}
.feature-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.feature-icon {
	font-size: 40px;
	color: #ff9800;
	margin-bottom: 20px;
}
/* Plans Section */
.plans {
    padding: 10px 10px;
    background: var(--plans-bg);
}
.plans p {
    color: var(--plans-text);

}

.plans h2 {
    color: var(--plans-text);
    font-size: 60px;
    font-weight: 700;
}
.plans h3 {
    color: var(--plans-text);
    font-size: 20px;
    font-weight: 700;
    margin-top: -30px;
}
.plan-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.plan-card {
	flex: 1 1 23%;
	background: var(--plans-card-bg);
	border-radius: 15px;
	padding: 30px 20px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}
.plan-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.plan-card i {
    color: var(--plans-card-text);
	font-size: 18px;
	font-weight: 700;
	margin: 15px 0;
}

.plan-card.featured {
	background: var(--plans-card-featured);
	color: var(--plans-card-featured-text);
	transform: scale(1.05);
}

.plan-card.featured i {
	color: var(--plans-card-featured-text);
	transform: scale(1.05);
}

.plan-card.featured .plan-speed {
    color: var(--plans-card-featured-text);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative; 
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3), -2px -2px 3px rgba(0, 0, 0, 0.3);
}

.plan-card.featured .plan-speed:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5), -2px -2px 5px rgba(0, 0, 0, 0.5); /* Efeito de contorno ao passar o mouse */
}

.plan-card.featured li {
    color: var(--plans-card-featured-text);
	margin: 10px 0;
	font-size: 16px;
	
}
.plan-featured li i {
	color: #ff5722;
	margin-right: 8px;
}

.plan-featured-price {
    color: var(--plans-card-featured-text);
	font-size: 28px;
	font-weight: 700;
	margin: 15px 0;
}

/* Sobrescrevendo os filhos para não herdarem do estilo normal */
.plan-card.featured .plan-speed h2,
.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-speed {
	font-size: 40px;
	font-weight: bold;
	color: var(--plans-card-mbps);
	margin-bottom: 15px;
}

.plan-price {
    color: var(--plans-card-valor);
	font-size: 28px;
	font-weight: 700;
	margin: 15px 0;
}
.plan-features {
    color: var(--plans-text);
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.plan-features li {
    color: var(--plans-card-text);
	margin: 10px 0;
	font-size: 16px;
	
}
.plan-features li i {
	color: var(--plans-card-text);
	margin-right: 8px;
}

.plan-disclaimer {
    text-align: center;
    color: var(--white);
    font-style: italic;
    margin-top: 20px;
}
.btn-primary {
	background: #ff5722;
	border: none;
	padding: 12px 25px;
	border-radius: 50px;
	font-weight: bold;
	transition: background 0.3s;
}
.btn-primary:hover {
	background: #e64a19;
}

@media (max-width: 768px) {
  .plan-cards {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 100%;
    max-width: 340px; /* ou o valor que preferir */
  }
}

        /* 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%;
            
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-content,
            .coverage-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }
        }        

.about-diferenciais {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
}

.about-diferenciais h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.about-diferenciais h4 i {
    margin-right: 8px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.diferencial-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.diferencial-item i {
    color: var(--success);
    font-size: 0.9rem;
}

.diferencial-item span {
    color: var(--dark);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-details {
        grid-template-columns: 1fr;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item, .about-diferenciais {
        padding: 15px;
    }
}

/* Coverage Section Styles */
.coverage-section {
    background: var(--coverage-bg);
    padding: 80px 0;
    color: var(--white);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: center;
    min-width: 0;
    width: 100%;
}

.coverage-text h2 {
    color: var(--coverage-text);
    margin-bottom: 20px;
    font-size: 2rem;
}

.coverage-description {
    color: var(--coverage-text-2);
    line-height: 1.8;
    margin-bottom: 30px;
}

.coverage-description p {
    margin-bottom: 15px;
}

.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);
}

.localidade-item span {
    color: var(--coverage-text-3);
}

/* Responsive */
@media (max-width: 768px) {
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .coverage-text h2 {
        font-size: 1.5rem;
    }
    
    .localidades-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .coverage-content {
        grid-template-columns: 1fr;
    }

    .coverage-map {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .coverage-map {
        order: -1;
    }
}


/* Why Choose Section - Cards Full Width */
.why-choose {
	background-color: var(--why-bg);
	padding: 60px 0;
}
.why-choose h2 {
    color: var(--why-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.why-choose p {
    color: var(--why-text);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.why-choose-container {
	max-width: 1180px;
	margin: 0 auto;
}
.why-choose .section-title {
	text-align: center;
	margin-bottom: 40px;
	color: var(--why-text);
}
.why-choose-cards {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}
.why-card {
	background: rgba(255, 255, 255, 18%);
	flex: 1;
	min-width: 250px;
	max-width: 350px;
	padding: 30px 20px;
	border-radius: 12px;
	text-align: center;
	color: var(--white);
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	transition: transform 0.3s ease;
}
.why-card:hover {
	transform: translateY(-5px);
}
.why-choose-cards {
	display: flex;
	justify-content: space-around;
	gap: 30px;
	flex-wrap: wrap;
}
.why-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 30px 20px;
	text-align: center;
	color: var(--why-text);
	flex: 1 1 250px;
	transition: transform 0.3s, box-shadow 0.3s;
	backdrop-filter: blur(8px); /* efeito moderno */
}
.why-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.card-icon {
	font-size: 40px;
	margin-bottom: 20px;
	 color: var(--why-text);
}


/* Responsivo */
@media (max-width: 768px) {
.why-choose-cards {
	flex-direction: column;
	align-items: center;
}
.why-card {
	max-width: 90%;
}
}
/* Coverage Section */
.coverage {
	background-color: #000;
	padding: 80px 0;
	width: 100%;
	color: white;
}
.coverage-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px; /* espaçamento para mobile */
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}
.coverage-text {
	flex: 1 1 500px;
}
.coverage-text h2 {
	margin-bottom: 20px;
	font-size: 2.2rem;
}
.coverage-text p {
	margin-bottom: 15px;
	line-height: 1.6;
}
.coverage-map {
	flex: 1 1 300px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.coverage-icon {
	font-size: 80px;
	color: white;
	background: rgba(255,255,255,0.2);
	padding: 30px;
	border-radius: 50%;
}

/* Responsivo */
@media (max-width: 768px) {
.coverage-container {
	flex-direction: column;
	text-align: center;
}
.coverage-map {
	margin-top: 30px;
}
}
/* FAQ Section */
.faq {
	background-color: var(--faq-bg);
}

.faq h2 {
    color: var(--faq-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.faq p {
    color: var(--faq-text);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq span {
    color: var(--why-text);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}
.accordion {
	margin-top: 30px;
}
.accordion-item {
	background-color: var(--why-bg);
	border-radius: 10px;
	margin-bottom: 15px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.accordion-header {
	padding: 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
}
.accordion-header i {
    color: var(--why-text);
	transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header i {
	transform: rotate(180deg);
}
.accordion-content {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-item.active .accordion-content {
	padding: 0 20px 20px;
	max-height: 500px;
}
/* Second Bill Section */
.second-bill {
	background-color: #000;
	color: var(--white);
	padding: 30px;
	border-radius: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.second-bill-text {
	font-weight: 800;
	font-size: 1.2rem;
}

/* Footer full width e centralizado */
.footer {
	background-color: var(--footer-bg);
	color: white;
	padding: 50px 20px 20px;
	text-align: center; /* centraliza todo o conteúdo */
}
.footer-logo img {
	max-width: 120px;
	margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer p {
	margin: 5px 0;
}
.footer-social {
	margin: 15px 0;
}
.footer-social a {
	color: white;
	margin: 0 10px;
	font-size: 20px;
	transition: 0.3s;
}
.footer-social a:hover {
	color: #ff9800; /* efeito hover laranja */
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.2);
	margin-top: 30px;
	padding-top: 20px;
}
.footer-bottom p {
	margin: 5px 0;
}
.footer-partner {
	margin-top: 10px;
}
.footer-partner img {
	max-height: 40px;
	margin-left: 10px;
	vertical-align: middle;
}

/* Responsivo */
@media (max-width: 768px) {
.footer-social a {
	margin: 0 8px;
}
.footer-partner img {
	margin-left: 5px;
	max-height: 30px;
}
}
/* Quick Actions */
.quick-actions {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
}
.whatsapp-btn {
	background-color: #25D366;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	transition: transform 0.3s ease;
}
.whatsapp-btn:hover {
	transform: scale(1.1);
}
 /* Responsive Styles */
        @media (max-width: 1024px) {
.hero h1 {
	font-size: 2.5rem;
}
.about-content {
	flex-direction: column;
}
.contact-form-container {
	grid-template-columns: 1fr;
}
}
 @media (max-width: 768px) {
.top-bar .container {
	flex-direction: column;
	gap: 10px;
}
.nav-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: var(--white);
	flex-direction: column;
	padding: 20px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.nav-menu.active {
	display: flex;
}
.mobile-menu-btn {
	display: block;
}
.hero h1 {
	font-size: 2rem;
}
.hero-slider {
	height: 400px;
}
.quick-features .container {
	flex-direction: column;
	gap: 15px;
}
.feature-item {
	min-width: 100%;
}
.coverage {
	flex-direction: column;
	text-align: center;
}
.second-bill {
	flex-direction: column;
	text-align: center;
}
.contact-grid {
	grid-template-columns: 1fr;
}
.form-group {
	flex-direction: column;
}
}
 @media (max-width: 480px) {
.hero h1 {
	font-size: 1.8rem;
}
.section-title h2 {
	font-size: 2rem;
}
.plan-card {
	width: 100%;
}
.why-choose-features {
	flex-direction: column;
}
}

/* ==========================
   CONTACT SECTION
========================== */
.contact {
  background-color: var(--contact-bg);
  color: var(--white);
  padding: 60px 15px;
}
.contact h2 {
    color: var(--contact-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}
.contact h3 {
    color: var(--contact-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
} .contact p {
    color: var(--contact-text);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact span {
    color: var(--contact-text);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
}
.contact strong {
    color: var(--contact-text);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
}
.contact small {
    color: var(--contact-text);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.contact-card {
  background: rgba(255, 255, 255, 18%);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}
.contact i {
  color: var(--contact-text);
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.contact-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  min-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-send {
  background: rgba(255, 255, 255, 0.1);
  color: var(--contact-text);
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  border: 0px;
}
.btn-send:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form {
    min-width: 100%;
  }

  .contact-info {
    width: 100%;
  }
}


/* Bloco de informações rápidas */
.contact-info {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}

.contact-info-item i {
  font-size: 28px;
}

.contact-info-item div strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-item div small {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.contact-info-item:hover {
  transform: translateY(-5px);
} 