/* ==========================================================================
   --- AJUSTE DOS ÍCONES DA NAVBAR ---
   ========================================================================== */

.nav-link i {
    font-size: 1.1rem;
    vertical-align: -2px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-item {
    margin-right: 5px;
}

/* ==========================================================================
   --- ESTILOS EXCLUSIVOS DA PÁGINA INICIAL (INDEX) ---
   ========================================================================== */

/* Carrossel */
.carousel-item {
    height: 500px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-caption {
    bottom: 20%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.carousel-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Header/Hero Section */
.header-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 100px 0 80px;
}

/* Barra de Transição (Stats) */
.stats-bridge {
    background: white;
    padding: 30px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-color);
}

/* Planos e Cards */
.card-plan {
    transition: transform 0.3s;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

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

.service-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
    border-color: var(--primary-color);
    background-color: #fff !important;
}

/* --- Estilos de Clientes --- */

.testimonial-card {
    background: white;
    border-radius: 18px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    border-bottom: 5px solid var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Banner de Confiança Clean */
.trust-banner-clean {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    border-left: 8px solid var(--primary-color);
    text-align: left;
    position: relative; /* Necessário para o escudo */
    overflow: hidden;   /* Corta o escudo se ele sair da borda */
}

/* Destaque do número +200 clientes */
.number-highlight {
    text-align: center;
    min-width: 120px;
    position: relative;
    z-index: 2; /* Fica acima do escudo */
}

.number-highlight span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900 !important;
    font-family: 'Arial Black', sans-serif;
}

/* Escudo marca d'água */
.shield-watermark {
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 10rem;
    color: var(--primary-color);
    opacity: 0.04; /* Sutil como marca d'água */
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 1;
}

/* Etiquetas de Status */
.badge-status-item {
    background: #f8f9fa;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fw-black { font-weight: 900; }
.tracking-wider { letter-spacing: 1px; }

/* Divisória vertical no desktop */
@media (min-width: 992px) {
    .border-lg-end {
        border-right: 1px solid rgba(0,0,0,0.08);
    }
}

/* Botão Pílula */
.trust-banner-clean .btn-primary {
    border-radius: 50px;
    transition: all 0.3s ease;
}

.trust-banner-clean .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Utilidades da Home */
section { padding: 80px 0; }

.feature-list { font-size: 0.9rem; list-style: none; padding-left: 0; min-height: 160px;}

.bi-check-circle-fill { color: #28a745; margin-right: 8px; }

.server-highlight { color: #0056b3; font-weight: bold; background: #e7f1ff; padding: 2px 8px; border-radius: 4px; display: inline-block; }

.disclaimer-box {
    background-color: #fff3cd; color: #856404; border-left: 5px solid #ffeeba;
    padding: 15px; border-radius: 8px; display: inline-block; margin-top: 30px;
}

/* Responsivo */
@media (max-width: 768px) {
    .carousel-item { height: 400px; }
    .carousel-caption { bottom: 10%; margin: 0 10px; display: block !important; }
    .stats-bridge { margin-left: 15px; margin-right: 15px; width: auto; }
}

/* ==========================================================================
   --- ESTILOS EXCLUSIVOS DA PÁGINA DE CONTATO ---
   ========================================================================== */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 80px 0;
}

/* Card do Formulário */
.contact-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: #fff;
    padding: 40px;
}

/* Ajuste fino para o card no celular */
@media (max-width: 576px) {
    .contact-card { padding: 25px 20px; }
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.1);
}

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

.btn-send:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Info de Contato Lateral */
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #e7f1ff;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

/* ==========================================================================
   --- ESTILOS EXCLUSIVOS DA PÁGINA DE PLANOS ---
   ========================================================================== */

/* Fundo Azul (Header da Página) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 80px 0; 
    text-align: center;
}

/* Tabela Comparativa */
.comparison-table thead th {
    background-color: var(--dark-blue);
    color: white;
    padding: 20px;
    border: none;
}

.comparison-table tbody tr:hover { 
    background-color: #f8f9fa; 
}

.bi-check-lg { 
    color: #28a745; 
    font-size: 1.2rem; 
    font-weight: bold; 
}

.bi-dash { 
    color: #dee2e6; 
}

.visit-count { 
    font-weight: bold; 
    color: var(--primary-color); 
}

/* FAQ (Acordeão) */
.accordion-item { 
    border: none; 
    margin-bottom: 10px; 
    border-radius: 10px !important; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    overflow: hidden; 
}

.accordion-button:not(.collapsed) { 
    background-color: #e7f1ff; 
    color: var(--primary-color); 
}

/* ==========================================================================
   --- ESTILOS EXCLUSIVOS DA PÁGINA DE SERVIÇOS ---
   ========================================================================== */

.services-hero {
    background: linear-gradient(135deg, #0056b3 0%, var(--dark-blue) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.service-card {
    border: 2px solid transparent; 
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border: 2px solid var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e7f1ff 0%, #cce5ff 100%);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(-5deg) scale(1.1);
}

.cta-section {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0;
    border-radius: 30px;
    margin: 80px 0;
}

.btn-cta {
    background: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    transition: 0.3s;
}

/* ==========================================================================
   --- ESTILOS EXCLUSIVOS DA PÁGINA SOBRE ---
   ========================================================================== */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 80px 0;
}

/* Card de Perfil */
.profile-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    background: #fff;
    max-width: 380px;
    margin: 0 auto;
}

.img-container {
    overflow: hidden;
    width: 100%;
}

.profile-card img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.skill-tag {
    background: #e7f1ff;
    color: var(--dark-blue);
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin: 3px;
}

/* Timeline de Valores */
.value-box {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
}

/* Social Icons no Card */
.profile-socials a {
    color: #6c757d;
    font-size: 1.3rem;
    margin: 0 6px;
    transition: 0.3s ease;
    display: inline-block;
}

.profile-socials a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ==========================================================================
   --- ESTILOS EXCLUSIVOS DA SEÇÃO MARCAS E TECNOLOGIAS ---
   ========================================================================== */

.section-marcas {
  background-color: #ffffff; 
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 40px 0;
}

.section-marcas-title {
  text-transform: uppercase;
  color: #adb5bd;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-align: center;
}

.marquee-container {
  overflow: hidden;
  user-select: none;
  display: flex;
  position: relative;
  background: white;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  height: 100%;
  width: 150px;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  animation: scroll-left-marcas 40s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
}

.logo-marca {
  height: 90px; 
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transform: scale(1.3); 
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-item:hover .logo-marca {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.45);
  cursor: pointer;
}

@keyframes scroll-left-marcas {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

/* ==========================================================================
   --- ESTILO DO PASSO A PASSO DE SUPORTE REMOTO ---
   ========================================================================== */

.section-suporte-remoto {
    background-color: #f8f9fa; 
    padding: 80px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.step-card-remoto {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eef0f2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.step-card-remoto:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: var(--primary-color);
}

.step-icon-container {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #e7f1ff 0%, #cce5ff 100%);
    color: var(--primary-color);
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.step-card-remoto:hover .step-icon-container {
    background: var(--primary-color);
    color: white;
    transform: rotate(-5deg) scale(1.1);
}

.step-card-remoto h4 {
    color: var(--dark-blue);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.step-card-remoto p {
    color: #6c757d;
    line-height: 1.6;
}

.btn-suporte-action {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 45px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-suporte-action:hover {
    background-color: var(--dark-blue);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.2);
    transform: scale(1.02);
}

/* ==========================================================================
   --- ESTILOS DO FOOTER ---
   ========================================================================== */

.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icon-link {
    color: #6c757d;
    transition: 0.3s;
}

.social-icon-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    display: inline-block;
}