/* Estilos Gerais */
:root {
    --primary-color: #0078FF;
    --secondary-color: #666666;
    --light-bg: #E6F2FF;
    --dark-text: #333333;
    --white: #FFFFFF;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

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

.section-title {
    position: relative;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Cabeçalho */
header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff; /* garante fundo limpo */
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 1.5rem !important; 
}

.navbar {
    padding: 20px 0;


}

/* Logo */
.navbar-brand img {
    max-height: 60px;
}

/* Links do menu */
.nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    margin: 0 12px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}
/* Container dos botões mais à esquerda */
[data-i18n="btn-academy"],
[data-i18n="btn-follow-ia"],
[data-i18n="btn-client-access"] {
  padding: 4px 10px;              /* mais compacto */
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;            /* não quebra em 2 linhas */
  
  border: 1px solid #1976ff;
  background: #fff;
  color: #1976ff;
  text-decoration: none;

  transition: all 0.2s ease-in-out;
}

/* Hover */
[data-i18n="btn-academy"]:hover,
[data-i18n="btn-follow-ia"]:hover,
[data-i18n="btn-client-access"]:hover {
  background: #1976ff;
  color: #fff;
}

/* Mantém destaque no “Client Access” */
[data-i18n="btn-client-access"] {
  background: #1976ff;
  color: #fff;
}
[data-i18n="btn-client-access"]:hover {
  background: #155fe0;
  border-color: #155fe0;
}

.contact-info-header{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 24px;
}
.contact-info-header + .especial-buttons{
    margin-left: 0;
}
/* WhatsApp */
.whatsapp-button {
    background: #25D366;
    color: #fff !important;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
    margin-left: 0px;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.whatsapp-button:hover {
    background: #1ebe5b;
    text-decoration: none;
    color: #fff;
}

/* Idiomas */
.language-selector a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.language-selector a.active,
.language-selector a:hover {
    color: var(--primary-color);
}


/* Banner Principal */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 90px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-section .btn {
    padding: 12px 30px;
    font-weight: 600;
}

/* Sobre Nós */
.stats-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stats-text {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.mission-vision-values h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Serviços */
.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}
/* Estilo principal do card */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%; /* mantém todos com mesma altura */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Ícone */
.service-icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.1);
}

/* Título */
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 12px;
}

/* Descrição curta */
.service-card > p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Conteúdo extra */
.service-extra {
  margin-top: 15px;
  padding: 25px;
  border-radius: 12px;
  background: #f9f9f9;
  text-align: left;
  font-size: 0.92rem;
  color: #333;
  line-height: 1.6;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}

.service-extra p {
  color: #444;
  margin-bottom: 12px;
}

.service-extra b {
  display: block;
  margin: 15px 0 8px;
  color: #003366;
  font-size: 1rem;
}

/* Listas com check */
.service-extra ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.service-extra ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 25px;
  color: #333;
}

.service-extra ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}
.service-extra .section-title{
    font-size: 1.05rem;
    font-weight: 600;
    color: #0073e6;
    margin: 20px 0 10px;
    padding-left: 10px;
    border-left: 4px solid #0073e6;
    background: #f0f6ff;
    border-radius: 4px;
}

/* Botão Saiba Mais */
.service-card a {
  margin-top: auto;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 25px;
  background: #0073e6;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card a:hover {
  background: #005bb5;
}

.d-none {
  display: none;
}

/* Equipe */
.team-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.team-img-placeholder {
    height: 200px;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-color);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.team-specialty {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Presença Geográfica */
.map-container {
    max-width: 450px;
    width: 100%;
    height: auto;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-color);
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-top: 15px;
}

.location-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    justify-content: center
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    
}

.location-card ul li {
    margin-bottom: 10px;
}

/* Cases de Sucesso */
.nav-pills .nav-link {
    color: var(--dark-text);
    background-color: transparent;
    border-radius: 30px;
    padding: 8px 20px;
    margin: 0 5px;
    font-weight: 600;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.client-logo-placeholder {
    height: 100px;
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-logo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Diferenciais */
.advantage-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.advantage-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Contato */
.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

/* Calculadora de ROI */
.calculator-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.result-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    height: 100%;
}

.result-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Rodapé */
footer {
    background-color: #222;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.language-selector-footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.language-selector-footer a.active, .language-selector-footer a:hover {
    color: var(--primary-color);
}

/* Botão de Retorno ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0056b3;
    color: var(--white);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .special-buttons {
        margin-top: 20px;
        justify-content: center;
    }
    
    .language-selector {
        margin-top: 15px;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 70vh;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-card, .service-card, .team-card, .advantage-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 60vh;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .nav-pills .nav-link {
        margin-bottom: 10px;
    }

/*Soluções Costumizadas */
}
.about-extra {
    margin: 20px 0 30px;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
}

.about-extra ul {
    list-style: none; /* tira as bolinhas padrão */
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 20px;
}

.about-extra li {
    margin-bottom: 8px;
    font-weight: 500;
}

.about-extra strong {
    color: var(--primary-color);
}
.service-extra ul {
  list-style: none;   /* remove as bolinhas */
  padding-left: 0;    /* remove a indentação padrão */
}

.service-extra li {
  margin-bottom: 8px;
  font-weight: 500;
}
