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

html, body{
    max-width: 100%;
    overflow-x: hidden;
}

:root {
  /* Paleta Azul institucional (recomendado) */
  --cor-primaria: #0B3D91;      /* header / fundo principal */
  --cor-secundaria: #1F6FEB;    /* botões / links */
  --cor-acento: #FFB020;        /* calls-to-action */
  --cor-fundo-claro: #F2F6FB;   /* seções / cards */
  --cor-branco: #FFFFFF;
  --cor-texto: #1F2937;         /* texto principal */
  --cor-muted: #6B7280;         /* texto secundário / meta */
  --cor-fundo: var(--cor-branco);
  --gradiente-suave-fundo: linear-gradient(
    to bottom right,
    var(--cor-fundo-claro),
    #E8F0FF
  );
  :root {
  /*
  =========================
  CORES OFICIAIS DO LOGOTIPO
  =========================
  */

  /* AZUL Principal (Dossiês, Cor da Marca) */
  --cor-marca-azul: #3D8AC4;

  /* VERMELHO Destaque (Fita, Chamadas de Atenção) */
  --cor-destaque-vermelho: #E03C3C;

  /* CINZA/FUNDO Claro (Fundo, Sombras, Detalhes Suaves) */
  --cor-fundo-base: #F5F5F5;

  /* BRANCO (Texto Principal, Chave) */
  --cor-texto-claro: #FFFFFF;


  /*
  =========================
  GRADIENTE (Com as novas cores da marca)
  =========================
  */

  --gradiente-fundo-suave: linear-gradient(
    to top,
    var(--cor-fundo-base),       /* Começa no Cinza Claro */
    var(--cor-marca-azul) 75%    /* Termina no Azul da Marca (em 75% da área) */
  );
}
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--gradiente-fundo-suave);
    /* font-family: ; */
}


/* Header configuration */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    background-color: var(--cor-primaria);
    backdrop-filter: blur(6px);
}

header .logo{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.logo .j{
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cor-acento);
}

.logo .b{
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cor-acento);
}

/* Logo / brand */
header .logotipo {
   width: 130px;
   height: 70px;
   margin-top: 3px; 
}

/* Jose Baptista Consulting oculto */
.consulting-logo{
  /* display: none; */
  text-decoration: none;
  color: var(--cor-branco);
  font-size: 1.8rem;
  text-align: center;
}

/* Navigation */
header nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

header nav a {
    color: var(--cor-fundo-claro);
    text-decoration: none;
    padding: 0.5rem 0.65rem;
    border-radius: 6px;
    transition: background-color 150ms ease, color 150ms ease, transform 120ms ease;
    font-size: 1.3rem;
}

header nav a:hover,
header nav a:focus {
    background-color: var(--cor-muted);
    transform: translateY(-1px);
    outline: none;
}

/* Call-to-action button */
header .btn {
    display: inline-block;
    background: var(--cor-acento);
    color: var(--cor-texto);
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Mobile: hide full nav and show menu toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    cursor: pointer;
}

/* Configuration of hidden menu */
.dropdown{
  display:none;
}
.more_vert, .dropbtn_{
  height: 44px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;

}

/* Configuração de container principal (sem aninhamento) */
.container-principal{
    flex: 1 0 auto; /* ocupa o espaço entre header e footer */
    padding-bottom: 2rem; /* margem de segurança */
    padding-top: 94px;
}


/* First Section of home page */

/* ========== RESET BÁSICO ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

main.home-container {
    width: 100%;
    padding: 4rem 6%;
    flex: 1;
    padding-bottom: 2rem;
}

/* ========== PRIMEIRA SECÇÃO (TEXTO) ========== */
.first-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2%;
    max-width: 999px;
    padding: 3rem;
    padding-bottom: 4rem;
    margin: 0 auto;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.4rem;
    text-align: center;
}

.second-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: start;
}

/* ========== BOTÕES ========== */
.button-group {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    margin-top: 1.9rem;
    margin-bottom: 1.9rem;
}

.btn, 
.btn-outline, 
.btn-large {
    padding: 0.9rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s ease-in-out;
}

/* Botão Principal */
.btn {
    background-color: #0057D9;
    color: #fff;
    border: none;
}

.btn:hover {
    background-color: #0042A8;
}

/* Botão Secundário */
.btn-outline {
    background: transparent;
    border: 2px solid #0057D9;
    color: #0057D9;
}

.btn-outline:hover {
    background-color: #0057D9;
    color: #fff;
}

/* Botão grande (CTA final) */
.btn-large {
    background-color: #007F3F;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.btn-large:hover {
    background-color: #006230;
}

/* ========== SEGUNDA SECÇÃO (CARDS DE SERVIÇOS) ========== */
.second-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.imgs {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s ease-in-out;
}

.imgs:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.imgs h2 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #222;
}


.docs-img {
    width: 100%;
    border-radius: 6px;
}

/* ========== CTA FINAL ========== */
.cta-final {
    margin-top: 4rem;
    text-align: center;
    padding: 2.5rem;
    background-color: #eef6ff;
    border-radius: 12px;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #003A8C;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--cor-fundo-claro);
}

/* Configuração da pagina about/Sobre */

/* Main content */
    main { 
        flex: 1 0 auto; 
        padding-bottom: 2rem; 
    }
    .autor-container{
      max-width: 80%;
      margin: 0 auto; 
      padding: 2rem 1.25rem;
    }

    .autor-container h1{
      font-size: 5rem;
      color: Var(--cor-primaria);
      margin: 2rem 0 4rem 2rem;
    }

    .autor-container p{
      font-size: 1.2rem;
      color: var(--cor-muted);
      line-height: 1.6rem;
      margin-left: 8px;
      margin-bottom: 1rem;
    }

    .autor-container p a{
      text-decoration: none;
      color: var(--cor-acento);
      font-weight: 700;
      font-size: 2rem;
    }

    .autor-container .sobre-text{
      margin-left: 4rem;
      color: var(--cor-marca-azul);
      font-size: 2rem;
    }
    
    .autor{
    display: flex;
     justify-content: center;
      gap: 3rem;
    }

    .autor-img{
     width: 450px; 
    
    }

   .objetivos{
      margin-bottom: 1.5rem;
      color: var(--cor-muted)
    }

    ul{
      margin-left: 1.2rem;
    }

    ul li{
      color: var(--cor-muted);
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
    }
    .container { 
        max-width: var(--max-width); 
        max-width: 80%;
        margin: 0 auto; 
        padding: 2rem 1.25rem; }

    .hero {
      text-align: center;
      padding: 2rem 1rem;
      margin-bottom: 2rem;
      border-radius: 10px;
      background: linear-gradient(90deg, rgba(0,87,217,0.05), rgba(0,127,63,0.02));
    }
    .page-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }

    /* Section sobre Nós */
    .nossa-empresa{
      width: 980px;
      margin: 5px auto;
    }
    .nossa-empresa h2{
      text-transform: uppercase;
      font-size: 1.5rem;
      color: var(--cor-destaque-vermelho);
      margin: 3rem 0 3rem 0;
    }

    .nossa-empresa .conheca-nos{
      font-size: 5rem;
      color: var(--cor-primaria);
      margin-bottom: 3rem;
    }

    /* section of image */
    .sobre-nos{
      width: 980px;
      margin: 5px auto; 
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      background-color: linear-gradient(90deg, rgba(0,87,217,0.05), rgba(0,127,63,0.02));

    }

    
    .lead { 
        color: #374151; 
        font-size: 1.25rem;
        line-height: 2.4rem; 
    }

    /* Card dos numeros */
    .numeros-empresa{
      position: relative;
      z-index: -100;
    }
    .numeros-empresa .projeto{
      width: 230px;
      height: 70px;
      background-color: var(--cor-acento);
      border-radius: 12px;
      padding: 5px;
      
    }

    .numeros-empresa .projeto p{
      color: var(--cor-branco);
      font-size: 1.3rem;
    }

    .numeros-empresa img {
      width: 300px;
      height: 360px;
      border-radius: 10px;
      flex-shrink: 0;
    }

    /* Posicionamento dos cards */
    .numeros-empresa .card-concluido{
      position: absolute;
      left: -38%;
      top: 0;
    }

    .numeros-empresa .card-colaboradores{
      position: absolute;
      top: 38%;
      right: -35%;
    }

    .numeros-empresa .card-clientes{
      position: absolute;
      bottom: 2%;
      right: 2%;
    }

    /* section equipa */
    .equipa-text{
      width: 1180px;
      margin: 0 auto;
    }
    .equipa-text h2{
      text-align: center;
      text-transform: uppercase;
      font-size: 1.3rem;
      color: var(--cor-texto);
      margin-top: 5rem;
    }

    .equipa-text p{
      text-align: center;
      font-size: 5rem;
      color: var(--cor-primaria);
      margin: 3rem 0 2rem 0;
    }

    /* image of the team members */
    .equipa-group{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .especialist-img{
      width: 250px;
    }

    .equipa-group .especialist{
      width: 180px;
      height: 180px;
      border-radius: 50%;
    }

    .especialist-img h3{
      text-align: center;
      color: #0B3D91;
      font-size: 1.4rem;
      margin: 2rem 0 1rem 0;
    }

    .especialist-img p{
      text-align: center;
      color: #1a1a1a;
      font-size: 1.1rem;
    }

    /* Hero section  */
.hero-sec {
  min-height: 50vh;
  background-color: var(--cor-primaria);
  margin: 2rem 0;
  padding: 2rem 1.5rem;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Texto principal */
.big-text {
  width: 100%;
  position: relative;
  top: auto;
  left: auto;
  text-align: left;
}

.big-text h2 {
  text-transform: uppercase;
  color: var(--cor-fundo-base);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.big-text p {
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--cor-branco);
  font-weight: 700;
}

/* Bloco profissionalismo */
.profissio {
  display: flex;
  flex-direction: row;
  gap: 21rem;
  width: 100%;
  margin-top: 1.5rem;
  position: relative;
  top: auto;
  left: auto;
}

/* Título secundário */
.profissionalismo h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--cor-branco);
  margin: 0;
}
 
.about{
  max-width: 890px;
  display: flex;
  gap: 5rem;
  margin: 0 auto;
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.about .text {
      flex: 1;
      min-width: 250px;
    }
    section.about .text h2 {
      color: var(--cor-primaria);
      font-size: 2.25rem;
      margin-bottom: 0.75rem;
    }

    .cta {
      text-align: center;
      margin: 2rem 0;
    }
    .cta a.btn {
      padding: 0.75rem 1.25rem;
      font-size: 1.2rem;
      text-decoration: none;
    }

    .services-section{
        margin: 0 auto;
    }

    .services-section .card{
        width: 600px;
        margin: 0 auto;
    }

    .card h3{
        text-transform: uppercase;
        margin-bottom: 1.2rem;
    }

    .card ul li{
        line-height: 2.5rem;
        font-size: 1.5rem;
        color: var(--cor-texto);
    }
/* configuration of services page */
/*********************************
  ESTILOS BASE DA PAGE SERVIÇOS
**********************************/

.servicos-page {
  width: 100%;
  padding-top: 120px; /* espaço para não colidir com header sticky */
}

/*********************************
  HERO
**********************************/

.servicos-hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(
    135deg,
    var(--cor-secundaria) 0%,
    var(--cor-primaria) 100%
  );
  color: white;
}

.servicos-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.servicos-hero img{
  width: 120px; 
  height: 160px;
}
.servicos-hero p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0.5rem auto 2rem auto;
}

.servicos-hero .hero-btn {
  background: white;
  color: var(--cor-primaria);
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 2rem;
  border-radius: 8px;
  transition: 0.3s ease;
}

.servicos-hero .hero-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

/*********************************
  SECÇÕES DE SERVIÇOS
**********************************/

.servicos-bloco {
  padding: 3.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.servicos-bloco.alt {
  background-color: #f6f8fc;
}

.servicos-bloco h2 {
  font-size: 2rem;
  color: var(--cor-primaria);
  text-align: center;
  margin-bottom: 1rem;
}

.servicos-bloco .descricao {
  text-align: center;
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  color: #444;
  line-height: 1.6;
}

/*********************************
  CARDS
**********************************/

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(274px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0px 3px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 24px rgba(0,0,0,0.15);
}

.card h3 {
  font-size: 1.3rem;
  color: var(--cor-primaria);
  margin-bottom: 0.5rem;
}

.card p {
  color: #555;
  font-size: 1.3rem;
  line-height: 1.5;
}

.card ul li{
  color: #555;
  font-size: 1.3rem;
  line-height: 1.5;
}

/*********************************
  CTA FINAL
**********************************/

.cta-final {
  text-align: center;
  padding: 4rem 1rem;
  background: var(--cor-primaria);
  color: white;
}

.cta-final h2 {
  font-size: 2rem;
}

.cta-final p {
  font-size: 1.1rem;
  margin: 1rem auto 2rem auto;
}

.cta-final .hero-btn {
  background: white;
  color: var(--cor-primaria);
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.cta-final .hero-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}

.cta-card{
  margin-top: 2.4rem;
}
.card-btn{
  background: var(--cor-primaria);
  color: var(--cor-branco);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.card-btn:hover{
  background-color: var(--cor-acento);
}

/* Configuration of contacts page */
/*********************************
  BASE PAGE CONTACTOS
**********************************/
.contactos-page {
    padding-top: 130px; /* espaço para o header sticky */
}


/*********************************
  FLASH MESSAGES
**********************************/

  .flash {
  padding: 15px;
  margin: 20px auto;
  max-width: 700px;
  max-height: 80px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  background: #e6fffa;
}

.flash-success {
  
  color: #065f46;
  border: 1px solid #34d399;
}

.flash-error {
  background: #fee2e2;
  color: #7f1d1d;
  border: 1px solid #f87171;
}
    .logout-btn {
  background: #dc2626;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  position: absolute;
  top: 15%;
  right: 14%;
}

.logout-btn:hover {
  background: #b91c1c;
}



/*********************************
  HERO
**********************************/
.contactos-hero {
    text-align: center;
    padding: 3.5rem 1rem;
    background: linear-gradient(
        135deg,
        var(--cor-secundaria),
        var(--cor-primaria)
    );
    color: white;
}

.contactos-hero h1 {
    font-size: 2.5rem;
}

.contactos-hero p {
    max-width: 650px;
    margin: 1rem auto;
    font-size: 1.1rem;
}

/*********************************
  CONTACT INFO CARDS
**********************************/
.contact-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 1rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    width: 300px;
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--cor-primaria);
    margin-bottom: 0.7rem;
}

/*********************************
  FORMULÁRIO
**********************************/
.contact-form-section {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--cor-primaria);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: var(--cor-primaria);
}

/* Consentimento de tratmento de dados */

.rgpd{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 1rem;
}

.enviar-btn {
    background: var(--cor-primaria);
    color: white;
    border-radius: 8px;
    padding: 0.9rem 1.5rem;
    border: none;
    transition: 0.3s ease;
}

.enviar-btn:hover {
    background: var(--cor-secundaria);
}

/*********************************
  MAPA
**********************************/
.mapa-section {
    text-align: center;
    padding: 3rem 1rem;
}

.mapa-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mapa-img {
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
}

/* Configuration of depoiments page */

.testimonials-page {
  padding: 3rem 1rem;
}

.page-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--cor-primaria);
}

.page-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--cor-texto);
}

/* Lista */
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  border-left: 5px solid var(--cor-primaria);
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--cor-primaria);
}

.testimonial-card .job {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.8rem;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Formulário */
.form-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;


  color: var(--cor-primaria);
}

.testimonial-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.testimonial-form input,
.testimonial-form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.testimonial-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.depoimentos-container {
    width: 90%;
    max-width: 1200px;
    margin: 8rem auto 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    background-color: var(--cor-secundaria);
    padding: 4rem;
    border-radius: 6px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: var(--cor-primaria);
}

.section-header p {
    font-size: 1.5rem;
    color: var(--cor-branco);
    margin: 2rem 0 2rem 0;
}


/* --- FOOTER FIX --- */
/* .footer {
    padding: 2rem 1rem;
    background: var(--cor-secundaria);
    text-align: center;
    margin-top: 2rem;
} */

.footer p {
    color: var(--cor-texto);
}



.footer {
    background-color: var(--cor-secundaria);
    padding: 3rem 6%;
    margin-top: 4rem;
    color: var(--cor-texto);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-section {
    width: 23%;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--cor-texto);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: var(--cor-texto);
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.footer-section a:hover {
    color: var(--cor-principal);
    text-decoration: underline;
}

/* Ícones */
.social-icons {
    display: flex;
    gap: 1rem;
    margin: 0 auto;
    width: 60%;
    margin-right: 50%;
}

.social-icons a {
    color: var(--cor-texto);
    transition: 0.2s;
}

.social-icons a:hover {
    color: var(--cor-principal);
}

/* Bottom Footer */
.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    font-size: 0.95rem;
}

/* Ajustar cor e tamanho via CSS (o SVG usa currentColor) */
.whatsapp-link {
  color: #25D366;      /* verde WhatsApp */
  font-size: 28px;     /* controla o width/height do SVG se não tiveres width/height explícitos */
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* se preferires definir tamanho diretamente no SVG, substitui width/height */
.whatsapp-link svg {
  width: 40px;
  height: 40px;
}


