:root {
    --primary-color: #000000;
    --secondary-color: #ff6584;
    --accent-color: #1f3a93;
    --accent-color-hover: #2a4db5;
    --dark-color: #2d2d2d;
    --light-color: #f9f9f9;
    --contact-btn-color: #007BFF;
    --gradient-primary: linear-gradient(135deg, #1f3a93 0%, #A78BFA 100%);
    --gradient-secondary: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --gradient-accent: linear-gradient(135deg, #1f3a93 0%, #1f3a93 70%, #A78BFA 100%); /* Azul ocupa 70%, roxo nos últimos 30% */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif, Arial, sans-serif;
}

body {
  background-color: var(--light-color);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 120px;          /* Volta ao tamanho antigo */
  height: auto;          /* Mantém a proporção */
  max-width: 100%;       /* Garante responsividade, como no antigo */
  display: block;        /* Consistência com o antigo */
}

}

.logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: rgb(41, 46, 50);
  font-weight: 900;
  font-family: 'Roboto ', sans-serif;
  font-size: 17px;
  line-height: 23px;
  text-transform: uppercase;
  padding: 5px 10px;
  position: relative;
  transition: var(--transition-smooth);
  letter-spacing: -0.5px; /* Letras mais próximas */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 80%;
}

.nav-links a#contato-link {
  background: var(--gradient-primary);
  color: #ffffff !important;
  border: none;
  border-radius: 5px;
}

.nav-links a#contato-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 58, 147, 0.15);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn {
background: var(--gradient-accent); /* Usa o novo gradiente baseado em #1f3a93 */
    color: #ffffff !important;
    border: none;
    border-radius: 5px;
    padding: 12px 24px;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn:hover {
background: linear-gradient(135deg, #2a4db5 0%, #2a4db5 70%, #c4aefc 100%); /* Azul claro ocupa 70%, roxo claro nos últimos 30% */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover::before {
  width: 100%;
}

.hero {
  padding: 120px 0 40px;
  background: var(--gradient-secondary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231f3a93' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
  animation: fadeIn 0.8s ease forwards;
}

.hero-text h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: rgb(41, 46, 50);
  font-size: 69px;
  line-height: 60px;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 25px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:     
    0 0 1px rgba(31, 58, 147, 0.3), /* Cor principal do gradiente */
    0 0 2px rgba(167, 139, 250, 0.2); /* Cor secundária do gradiente */;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.phone-mockup {
  position: relative;
  width: 320px;
  height: 670px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 40px;
}

.phone-screen {
  position: absolute;
  top: 12.3%;
  left: 12%;
  width: 76%;
  height: 73%;
  overflow: hidden;
  z-index: 2;
  border-radius: 30px;
  border: 10px solid var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transform: translateY(-1px); /* ou -2px se for necessário */
  display: block;
}

.section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.05;
  top: -100px;
  left: -100px;
  z-index: -1;
}

.section::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.05;
  bottom: -75px;
  right: -75px;
  z-index: -1;
}

.hero .shape-divider .shape-fill {
  fill: var(--light-color); /* #f9f9f9, para combinar com o fundo de #servicos */
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  animation: fadeIn 0.8s ease forwards;
}

.services {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
background: linear-gradient(145deg, #ffffff, #f1f5f9); /* Gradiente do exemplo */
    border-radius: 15px; /* Aumentei o border-radius para um visual mais suave */
    padding: 30px;
    box-shadow: var(--box-shadow); /* Mantive a variável do seu código original */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave */
    animation: fadeInUp 0.6s ease-out forwards; /* Animação do exemplo */
    animation-delay: calc(var(--delay) * 0.2s); /* Delay baseado na variável --delay */
}

.service-card::before {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary); /* Gradiente do seu código original */
    opacity: 0.05;
    transition: var(--transition-smooth); /* Transição suave do seu código */
    z-index: -1;
}

.service-card:hover {
transform: translateY(-10px); /* Efeito de elevação do exemplo */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Sombra mais pronunciada no hover */
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover::before {
    height: 100%; /* Efeito de fundo ao passar o mouse, do seu código original */
}

.service-icon {
width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); /* Gradiente do exemplo, ajustado com suas variáveis */
    color: white;
    border: 2px solid rgba(31, 58, 147, 0.2); /* Mantive a borda do seu código original */
    border-radius: 15px; /* Ajustei para combinar com o border-radius do card */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra do seu código original */
    transition: transform 0.3s ease, background 0.3s ease; /* Transição para o hover */
}

.service-card:hover .service-icon {
transform: scale(1.1) rotate(5deg); /* Efeito de escala e rotação do exemplo */
    background: var(--gradient-primary); /* Gradiente do seu código original */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Sombra mais pronunciada no hover */
}

.service-card h3 {
color: var(--dark-color); /* Cor do seu código original */
    font-family: 'Roboto Condensed', sans-serif; /* Mantive a fonte do seu código */
    font-weight: 600;
    font-size: 18px; /* Tamanho do exemplo */
    margin-bottom: 15px;
}

/* Animação de fade-in do exemplo */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card p {
color: #777; /* Cor do seu código original */
    font-family: 'Roboto', sans-serif; /* Mantive a fonte do seu código */
    font-size: 1rem;
}

.contact {
  background: var(--gradient-secondary);
  color: var(--dark-color);
  padding: 60px 0;
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
  transform: translateY(0);
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--dark-color);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition-smooth);
  background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 58, 147, 0.1);
}

.contact-info {
  color: var(--dark-color);
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  font-size: 1rem;
  color: var(--dark-color);
}

.contact-icon {
  font-size: 1.3rem;
  color: #1f3a93;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(31, 58, 147, 0.1);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  background-color: rgba(31, 58, 147, 0.2);
  transform: scale(1.1);
}

footer {
  background-color: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1f3a93;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-links span {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.social-links i {
  font-size: 18px;
}

.social-links a:hover {
  background-color: #2a4db5;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#portfolio {
  background: var(--gradient-secondary); /* mesmo fundo da .hero */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
  font-size: 0.9rem;
}

.contact .section-title h2 {
  color: var(--primary-color);
}

.contact .section-title p {
  color: var(--primary-color);
}

.hero-text .hero-description {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #4a4a4a;
  font-size: 18px;
  line-height: 30px;
}

/* Estilos para seção Quem Somos */
#sobre {
  background-color: #f9f9f9;
  padding: 60px 0;
  position: relative; /* <- ADICIONA ISSO */
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.leader-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.leader-card:hover {
  transform: translateY(-10px);
}

.round-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
  filter: grayscale(20%);
}

.round-img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
  border-color: var(--accent-color);
}

.leader-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 22px;
  color: #2d2d2d;
  margin: 15px 0;
}

.leader-role {
  color: #4B5563;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: 16px;
  margin: 15px 0;
  position: relative;
  padding-bottom: 8px;
}

.leader-role::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #1f3a93;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.leader-bio p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Seção Co-criações */
/* Seção Portfolio - Correções */
/* Seção Resultados */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.work-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
}

.work-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.work-media {
  position: relative;
  height: 240px;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom 100%;
}

.work-stats {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.platform-icon {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-badge {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.work-caption {
  padding: 15px;
  background: white;
}

.work-caption h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.work-caption p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.bauducco-image img {
  object-position: center 30%;
}

.trem-pampa-image img {
  object-position: center 40%;
}

.americanas-image img {
  object-position: center 40%;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1f3a93;
}

.success-message {
    text-align: center;
    padding: 30px;
    background-color: #e7f3fe; /* Fundo azul claro, similar ao do formulário */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Mesma sombra do formulário */
    min-height: 200px; /* Garante que a mensagem ocupe um espaço mínimo */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.success-message h3 {
    color: var(--dark-color); /* Cor do texto consistente com o site */
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-family: 'Roboto Condensed', sans-serif; /* Mesma fonte do site */
    font-weight: 700;
}

.success-message p {
    color: #555;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif; /* Mesma fonte do site */
}

/* Estilo para o link do WhatsApp */
.whatsapp-link {
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #1f3a93; /* Mesma cor de hover dos outros ícones */
}

/* Estilo geral para os ícones na seção de contato */
.contact-info .contact-icon {
    font-size: 1.3rem; /* Tamanho consistente para todos os ícones */
    color: #1f3a93; /* Cor padrão dos ícones (exceto WhatsApp) */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(31, 58, 147, 0.1);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

/* Estilo específico para o ícone do WhatsApp */
.contact-info .whatsapp-link .contact-icon {
    background-color: rgba(31, 58, 147, 0.1); /* azul claro como os demais */
    color: #1f3a93; /* azul escuro padrão */
}

.contact-info .whatsapp-link .contact-icon:hover {
    background-color: rgba(37, 211, 102, 0.2); /* Efeito de hover com fundo verde mais escuro */
    transform: scale(1.1);
}

/* Estilo para o texto "Clique para abrir o WhatsApp" */
.whatsapp-text {
    font-size: 0.9rem;
    color: var(--dark-color); /* Cor preta para combinar com o resto da seção */
    margin-left: 5px;
    font-style: italic; /* Mantém o itálico para contraste sutil */
}

/* Ajuste no alinhamento do texto ao lado dos ícones */
.contact-detail p {
    margin: 0; /* Remove margens padrão que podem afetar o alinhamento */
    line-height: 1.5; /* Garante que o texto fique alinhado verticalmente com os outros */
}

/* Garante que o contêiner .contact-detail tenha o mesmo alinhamento */
.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
    font-size: 1rem;
    color: var(--dark-color);
}

/* Estilo para o link do WhatsApp no rodapé */
.footer-column .whatsapp-link {
    text-decoration: none;
    color: #bbb; /* Cor cinza para o número e texto */
    transition: color 0.3s ease;
}

.footer-column .whatsapp-link:hover {
    color: #25D366; /* Cor verde ao passar o mouse */
}

/* Conteúdo do WhatsApp (ícone, número e texto) */
.footer-column .whatsapp-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinha o conteúdo à esquerda */
}

/* Contêiner para o ícone e número (na mesma linha) */
.footer-column .whatsapp-number-container {
    display: flex;
    align-items: center; /* Alinha o ícone e o número verticalmente */
}

/* Ícone do WhatsApp */
.footer-column .whatsapp-link i {
    color: #25D366; /* Ícone verde */
    font-size: 1.2rem;
    margin-right: 8px; /* Espaço entre o ícone e o número */
}

/* Número do WhatsApp */
.footer-column .whatsapp-number {
    font-size: 1rem;
    color: #bbb; /* Número em cinza */
}

/* Texto "Clique para nos chamar no WhatsApp" */
.footer-column .whatsapp-text {
    font-size: 0.9rem;
    color: #bbb; /* Texto em cinza */
    font-style: italic;
    margin-top: 2px; /* Espaço entre o número e o texto */
    display: block; /* Garante que o texto fique em uma nova linha */
}

.footer-column .whatsapp-link:hover .whatsapp-number,
.footer-column .whatsapp-link:hover .whatsapp-text {
    color: #25D366; /* Número e texto ficam verdes ao passar o mouse */
}

a.btn {
  text-decoration: none;
}


/* Nova Media Query Combinada */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
      gap: 2rem; /* diminui o espaço entre texto e vídeo */
  padding-bottom: 0; /* se necessário */
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 0px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .work-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }

  .work-media {
    height: 200px;
  }

  .work-caption {
    padding: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .footer-content {
    gap: 40px;
    justify-items: start;
  }

  .footer-column {
    min-height: auto;
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 10px;
  }

  .service-card {
    padding: 20px;
    text-align: center;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 14px;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
      margin-bottom: 0; /* garante que não tem espaçamento extra abaixo do vídeo */

  }

  .hero-text h1 {
    margin-top: 20px;
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 15px;
  }

  .hero-text .hero-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 10px 24px;
  }

  .service-icon {
    margin: 0 auto 20px auto;
  }

  .hero {
    padding: 80px 0 10px;
  }
}

/* Animações e efeitos globais */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Novos elementos decorativos */

.badge-accent {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(31, 58, 147, 0.1);
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.shape-divider {
position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1; /* Garante que o shape divider fique atrás do conteúdo */
}

.shape-divider-bottom {
transform: rotate(180deg);
    bottom: 0; /* Muda de top: 0 para bottom: 0 */
    top: auto; /* Remove qualquer posicionamento no topo */
}

.shape-divider svg {
position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.shape-divider .shape-fill {
fill: #FFFFFF;
}

.shape-divider-bottom .shape-fill {
  fill: var(--dark-color);
}

.leader-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.leader-social a {
  background: var(--gradient-primary);
}

#servicos::before,
#servicos::after {
  display: none;
}
