

.btn-submit {
    background-color: #25D366; /* Cor do WhatsApp */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background-color: #128C7E; /* Tom mais escuro do WhatsApp */
}

.btn-submit::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-6.29-3.91c.545.269 1.672.891 1.824.984.151.094.303.133.454-.133.151-.268.605-1.061.74-1.345.135-.284.067-.525-.036-.689-.104-.164-.454-.366-.74-.549-.285-.183-.525-.31-.803-.104-.278.207-1.084.812-1.278 1.012-.193.199-.231.55.134.843M12 0a12 12 0 0 0-12 12 12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}
/* Estilos para o modal de produto */

/* Adicione ao seu style.css */
.product-detail-content.vertical-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.zoom-container {
    position: relative;
    overflow: hidden;
}

.zoom-image {
    width: 100%;
    transition: transform 0.3s ease;
    cursor: crosshair;
    transform-origin: center center;
}

.zoom-container:hover .zoom-image {
    transform: scale(2.5); /* Zoom de 2.5x */
}
.product-gallery.center-content {
  position: relative; 
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.product-gallery .main-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.product-gallery .main-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thumbnail-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.thumbnail {
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
}

.thumbnail.active {
  border-color: #25d366;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights-card {
  width: 100%;
  max-width: 600px;
  text-align: left;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.highlights-card h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #0071c2;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #333;
}

.highlights-list i {
  color: #25d366;
  margin-top: 3px;
}
.highlights-card {
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list li i {
    color: #00cc66;
    margin-top: 3px;
}

/* Melhorias na galeria */
.main-image {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.thumbnail {
    transition: transform 0.2s, border-color 0.2s;
}

.thumbnail:hover {
    transform: scale(1.05);
}

/* Destaque para o preço */
.product-price-container {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.product-price {
    font-size: 2.2rem;
    color: #e53935;
    font-weight: 700;
}

.original-price {
    font-size: 1.3rem;
    color: #999;
}

.installment {
    font-size: 1.1rem;
    color: #00a650;
    font-weight: 500;
}
.product-modal-content {
    max-width: 90%;
    width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
}

.product-detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-detail-header h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.product-price-container {
    margin: 20px 0;
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: #e53935;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.installment {
    font-size: 1rem;
    color: #00a650;
    margin-top: 5px;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-gallery {
    position: sticky;
    top: 20px;
}

.main-image {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.thumbnail.active {
    border-color: #0066cc;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    margin-bottom: 10px;
}

.spec-key {
    font-weight: bold;
    color: #555;
}

.spec-value {
    color: #333;
}

/* Responsivo */
@media (max-width: 992px) {
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: static;
    }
}

@media (max-width: 576px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .product-modal-content {
        padding: 20px;
    }
    
    .product-detail-header h1 {
        font-size: 1.4rem;
    }
    
    .main-image {
        height: 300px;
    }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: white;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebc5b;
}

.expansion-alert {
  font-size: 64px;
  animation: shake 1s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}
/* Admin Styles */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-select {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary {
    background: #0066cc;
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-warning {
    background: #ffc107;
    color: black;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.8rem;
}

.alert {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.table th {
    background: #f5f5f5;
}
/* Estilos para o carrossel de produtos */
.products-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.products-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.products-carousel-item {
    min-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.products-carousel .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-carousel .prev {
    left: 0;
}

.products-carousel .next {
    right: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .products-carousel-item {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .products-carousel-item {
        min-width: 100%;
    }
}
/* Ajustes para os controles do carrossel no mobile do produto */
@media (max-width: 767px) {
    .products-carousel {
        padding: 0 40px;
    }
    
    .products-carousel .carousel-control {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .products-carousel .prev {
        left: 5px;
    }
    
    .products-carousel .next {
        right: 5px;
    }
    
    /* Garante que os botões sejam clicáveis */
    .products-carousel .carousel-control {
        z-index: 20;
        pointer-events: auto;
    }
    
    /* Evita que os botões fiquem atrás do conteúdo */
    .products-carousel {
        position: relative;
    }
}
/* Estilos para o menu mobile -  */
/* Estilos responsivos para o modal de detalhes do plano */
.modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

.plan-detail-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.plan-detail-header h1 {
  font-size: 1.8rem;
}


.detail-column {
    width: 100%;
}

.equipment-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}
.detail-card {
  padding: 15px;
}

.equipment-grid {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

/* Ajustes para telas pequenas */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }
  
 /* Layout responsivo */
.plan-detail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 20px;
}
  
  .plan-detail-header h1 {
    font-size: 1.5rem;
  }
  
  .plan-price {
    font-size: 1.5rem;
  }
  
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
  
  .detail-card h2 {
    font-size: 1.2rem;
  }
  
  .equipment-item {
    padding: 10px;
  }
  
  .equipment-item i {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 15px;
  }
  
  .plan-detail-header h1 {
    font-size: 1.3rem;
  }
  
  .plan-category {
    font-size: 0.8rem;
  }
  
  .detail-card {
    padding: 12px;
  }
  
  .detail-card ul li {
    padding-left: 25px;
    font-size: 0.9rem;
  }
}
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-mobile-toggle .hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .nav-mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* Menu mobile - corrigido */
.nav-menu {
    transition: all 0.3s ease;
    z-index: 1000; /* Adicionado */
}

/* Responsivo - corrigido */
@media (max-width: 992px) {
    .nav-mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0; /* Adicionado */
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        opacity: 0; /* Adicionado */
        visibility: hidden; /* Adicionado */
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu li {
        margin: 0 0 15px 0;
        list-style: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Botão do app no menu mobile */
    .mobile-app-btn {
        margin-top: 15px;
    }
    
    .mobile-app-btn a {
        background-color: #0066cc;
        color: white !important;
        padding: 10px 15px;
        border-radius: 5px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }
    
    .mobile-app-btn a:hover {
        background-color: #0055aa;
    }
}
/* Ajustes para mobile */
@media (max-width: 992px) {
    .nav-actions {
        display: none;
    }
    
    /* Mostrar no menu mobile */
    .nav-menu ul li.mobile-app-btn {
        display: block;
        margin-top: 15px;
    }
    
    .nav-menu ul li.mobile-app-btn a {
        background-color: #0066cc;
        color: white !important;
        padding: 10px 15px;
        border-radius: 5px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 20px;
    border-radius: 10px;
    width: 95%;
    max-width: 800px;
    position: relative;
    animation: modalopen 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalopen {
    from {opacity: 0; transform: translateY(-50px)}
    to {opacity: 1; transform: translateY(0)}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-modal:hover {
    color: #333;
}

/* Estilos para o conteúdo do modal */
.plan-detail-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.detail-card {
  background: white;
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.detail-card h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.detail-card ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #00cc66;
}

.equipment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}


.equipment-item {
  flex: 0 1 220px;
  background-color: #f9f9ff;
  border: 1px solid #e0e0ff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.equipment-item i {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 8px;
  display: block;
}
.equipment-item p {
  font-size: 14px;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .plan-detail-content {
        grid-template-columns: 1fr;
    }
}
/* Carrossel de Planos */
.plans-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.plans-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.plans-carousel-item {
    min-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.plans-carousel .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plans-carousel .prev {
    left: 0;
}

.plans-carousel .next {
    right: 0;
}

/* Melhorias nos cards */
.plan-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.plan-card.highlight {
    position: relative;
    border: 2px solid #ff6600;
}

.plan-card.highlight:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 5px;
    background: var(--accent-color);
    border-radius: 0 0 5px 5px;
}

.plan-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #0066cc;
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.plan-card.highlight .plan-badge {
    background: var(--accent-color);
    color: #333;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: #0066cc;
    margin: 15px 0;
}

.plan-card.highlight .plan-price {
    color: var(--accent-color);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.plan-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #00cc66;
}

/* Abas */
.plans-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.tab-btn {
    padding: 10px 25px;
    background: #f0f0f0;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #0066cc;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .plans-carousel-item {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .plans-carousel-item {
        min-width: 100%;
    }
    
    .plans-tabs {
        flex-wrap: wrap;
    }
}
/* Carrossel de Planos */
.plans-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.plans-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.plans-carousel-item {
    min-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.plans-carousel .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plans-carousel .prev {
    left: 0;
}

.plans-carousel .next {
    right: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .plans-carousel-item {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .plans-carousel-item {
        min-width: 100%;
    }
}

/* Melhorias nos cards */
.plan-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.plan-card.highlight {
    position: relative;
    border: 2px solid #ff6600;
}

.plan-card.highlight:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 5px;
    background: var(--accent-color);
    border-radius: 0 0 5px 5px;
}

.plan-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #0066cc;
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.plan-card.highlight .plan-badge {
    background: var(--accent-color);
    color: #333;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: #0066cc;
    margin: 15px 0;
}

.plan-card.highlight .plan-price {
    color: var(--accent-color);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}
/* Página de Detalhes do Plano */
.plan-detail-section {
    padding: 60px 0;
}

.plan-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.plan-category {
    display: inline-block;
    padding: 5px 15px;
    background: #0066cc;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.plan-detail-header h1 {
    font-size: 2.5rem;
    margin: 10px 0;
    color: #1a1a2e;
}

.plan-detail-header .plan-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0066cc;
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.detail-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.detail-card h2 {
    color: #0066cc;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card ul li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.detail-card ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #00cc66;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.equipment-item {
    text-align: center;
    padding: 20px 15px;
    background: #f9f9ff;
    border-radius: 10px;
    border: 1px solid #eaeaff;
}

.equipment-item i {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 15px;
}


.equipment-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 4px 0;
}


.plan-comparison {
    text-align: center;
    padding: 40px;
    background: #f9f9ff;
    border-radius: 15px;
    border: 1px solid #eaeaff;
}
.plan-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.plan-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #00cc66;
}
/* Estilos para a logo */
.nav-logo {
    height: 60px; /* Altura do header */
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px; /* Altura da logo - ajuste conforme necessário */
    width: auto;
    transition: all 0.3s ease;
}

/* Efeito hover opcional */
.logo-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 30px;
    }
}
/* Estilo para botão do WhatsApp */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white !important;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}




/* Global Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00ccff;
    --accent-color: #87CEEB;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

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

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* SOS Animation Styles */
.sos-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: var(--dark-color);
    overflow: hidden;
}

.sos-text {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px var(--secondary-color);
    position: relative;
    z-index: 2;
}

.fiber-line {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color), transparent);
    height: 0;
    animation: fiberGrow 1.5s forwards;
    opacity: 0.7;
}

@keyframes fiberGrow {
    0% { height: 0; }
    100% { height: 100%; }
}

.light-pulse {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    filter: blur(2px);
    animation: pulseMove 3s infinite;
    opacity: 0;
}

@keyframes pulseMove {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100px); opacity: 0; }
}
.main-test {
    position: relative; /* Necessário para posicionamento */
    height: auto;        /* Herda a altura do conteúdo interno (como o nav) */
    z-index: 1;
    overflow: hidden;
}

.main-test .vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Vai preencher toda a altura da .main-test */
    z-index: 0;
}

.nav-test {
    position: relative;
    z-index: 2; /* Fica acima do canvas do VANTA */
}
/* Navigation Styles */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
}

.nav-logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.nav-logo span {
    color: var(--primary-color);
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}



/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    text-align: left;
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Highlights Section */
.highlights {
    background-color: white;
    padding: 40px 0;
}

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

.highlight-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

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

/* Plans Preview Section */
.plans-preview {
    background-color: var(--light-color);
}

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

.plan-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.highlight {
    border: 2px solid var(--accent-color);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.plan-price {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.plan-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.plan-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Products Preview Section */
.products-preview {
    background-color: white;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
}


.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 10px;
    flex-grow: 1;
}

.product-price {
    margin: 15px 0;
}

.product-info h3 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.product-info p {
    color: #666;
    line-height: 1.6;
}



.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.installment {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Plans Page Styles */
.plans-section {
    background-color: white;
}

.plans-container {
    margin-bottom: 60px;
}

.plan-category {
    margin-bottom: 50px;
}

.plan-category h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.plan-card.business {
    border: 2px solid var(--secondary-color);
}

.btn-signup {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-signup:hover {
    background-color: var(--secondary-color);
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background-color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 500px;
}

/* Products Page Styles */
.devices-section {
    background-color: var(--light-color);
}

.device-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-btn {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

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

.category-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.devices-container {
    margin-bottom: 60px;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.device-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.device-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
    position: relative;
}

.device-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.device-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.device-info {
    padding: 20px;
}

.device-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.device-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.device-specs span {
    display: flex;
    align-items: center;
    color: #555;
}

.device-specs i {
    margin-right: 5px;
    color: var(--primary-color);
}

.device-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #999;
}

.installment {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-buy:hover {
    background-color: #e65c00;
}

.product-benefits {
    background-color: white;
    padding: 60px 0;
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-color);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

/* Coverage Page Styles */
.coverage-section {
    background-color: var(--light-color);
}

.cities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.city-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.city-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.city-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.city-card p {
    color: #666;
    margin-bottom: 20px;
}

.city-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-item i {
    color: var(--primary-color);
}

.btn-coverage {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-coverage:hover {
    background-color: var(--primary-color);
}

.coverage-map {
    margin-top: 60px;
}

.coverage-map h3 {
    text-align: center;
    margin-bottom: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.map-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.expansion-section {
    background-color: white;
    padding: 60px 0;
}

.expansion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.expansion-text {
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  padding: 20px;
  border-radius: 12px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.expansion-text p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  padding: 10px 14px;
  border-radius: 8px;
  background-color: white;
  transition: transform 0.25s ease, background-color 0.25s ease;
  font-weight: 500;
}
.expansion-text p:hover {
  transform: scale(1.05);
  font-weight: 600;
  color: #004aad;
}
.expansion-text p i {
  font-size: 18px;
  color: #007bff;
  min-width: 24px;
}

.expansion-text p:hover {
  transform: scale(1.03);
  background-color: #eaf3ff;
  color: #004aad;
}

.expansion-form .form-group {
    margin-bottom: 15px;
}

.expansion-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.expansion-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Page Styles */
.contact-section {
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding: 30px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 30px;
    color: #666;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p {
    margin: 0;
    color: #666;
}

.contact-hours {
    margin-top: 40px;
}

.contact-hours h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-hours p {
    margin-bottom: 5px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.location-section {
    padding: 60px 0;
    background-color: white;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
    overflow: hidden; /* Remove qualquer overflow indesejado */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    text-align: center; /* Centraliza o texto */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .sos-text {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px var(--secondary-color);
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
     flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
      flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
}

.footer-contact i {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
}

.payment-methods h4 {
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
    color: #aaa;
}

.footer-bottom {
    text-align: center; /* Centraliza o texto */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .expansion-content {
        grid-template-columns: 1fr;
    }
    
    .expansion-image {
        order: -1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
    }
    
    .nav-menu li {
        margin: 0 0 15px 0;
    }
    
    .nav-mobile-toggle {
        display: block;
    }
    
    .hero-carousel {
        height: 300px;
    }
    
    .carousel-caption {
        left: 5%;
        right: 5%;
        max-width: none;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Correção de layout geral */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Garantir que os preços apareçam corretamente */
.device-price {
    margin: 15px 0;
    font-size: 1.2rem;
}

.current-price {
    font-weight: bold;
    color: #0066cc;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

/* Efeito cobra de luz */
@keyframes snakeMove {
    0% { transform: translateY(-100%) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    70% { opacity: 1; }
    100% { transform: translateY(100%) rotate(360deg); opacity: 0; }
}

.snake-light {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #00ccff, transparent 70%);
    border-radius: 50%;
    animation: snakeMove 4s infinite;
    opacity: 0;
}

/* Efeito cobra de luz */
@keyframes snakeMove {
    0% { 
        transform: translate(-50%, -100%) rotate(0deg); 
        opacity: 0; 
    }
    10% { 
        opacity: 1; 
    }
    70% { 
        opacity: 1; 
    }
    100% { 
        transform: translate(-50%, 100%) rotate(360deg); 
        opacity: 0; 
    }
}

.snake-light {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #00ccff, transparent 70%);
    border-radius: 50%;
    animation: snakeMove 4s infinite;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 576px) {
    .hero-carousel {
        height: 250px;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .highlight-grid,
    .plans-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-cards {
        grid-template-columns: 1fr;
    }
    
    .device-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-container {
        grid-template-columns: 1fr;
    }
}




/* Estilos para o modal de detalhes do produto */
.product-modal-content-custom {
    max-width: 900px; /* Aumenta a largura máxima do modal */
    width: 95%;
    margin: 2% auto; /* Ajusta a margem para centralizar melhor */
    padding: 20px; /* Padding geral */
}

.product-detail-layout {
    display: flex;
    flex-direction: column; /* Layout em coluna para mobile */
    gap: 20px;
}

@media (min-width: 768px) {
    .product-detail-layout {
        flex-direction: row; /* Layout em linha para desktop */
    }
}

.product-gallery-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-main-image {
    width: 100%;
    max-width: 350px; /* Tamanho máximo para a imagem principal */
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.product-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-thumbnail-item {
    width: 70px;
    height: 70px;
    border: 2px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s;
}

.product-thumbnail-item.active {
    border-color: #0066cc;
}

.product-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-section {
    flex: 2;
    padding-left: 20px;
}

.product-info-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.product-info-section .whatsapp-quote-btn {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.product-info-section .whatsapp-quote-btn:hover {
    background: #128C7E;
}

.product-section-title {
    font-size: 1.4rem;
    color: #0066cc;
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-section-title i {
    font-size: 1.2rem;
}

.product-highlights-list,
.product-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-highlights-list li,
.product-specs-list li {
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #555;
}

.product-highlights-list li i {
    color: #28a745;
    margin-top: 3px;
}

.product-specs-list li strong {
    color: #333;
}

.product-description-text {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .product-info-section {
        padding-left: 0;
    }
}




/* Estilos para a seção de pontos de cobertura Wi-Fi */
.wifi-coverage-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.coverage-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.scenario-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.scenario-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.scenario-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.scenario-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}


.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Isso fará a imagem cobrir todo o espaço */
    border-radius: 10px;
}

.scenario-content {
    padding: 30px;
}

.scenario-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scenario-badge {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.scenario-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.scenario-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-item i {
    font-size: 1.1rem;
    color: #0066cc;
}

/* Responsividade para a seção de cobertura Wi-Fi */
@media (max-width: 768px) {
    .wifi-coverage-section {
        padding: 60px 0;
    }
    
    .coverage-scenarios {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .scenario-card {
        margin: 0 10px;
    }
    
    .scenario-image {
        height: 200px;
        padding: 15px;
    }
    
    .scenario-content {
        padding: 25px 20px;
    }
    
    .scenario-content h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .scenario-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .scenario-content {
        padding: 20px 15px;
    }
    
    .scenario-content h3 {
        font-size: 1.2rem;
    }
    
    .scenario-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}




