@charset "UTF-8";

/* ==== RESET & BASE ==== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary-color, #185cb6);
    outline-offset: 3px;
}

html {
    scroll-behavior: smooth;
}

:root {
    --font-main: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #1e40af;
    --background-color: #fafbfc;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --accent-color: #f59e0b;
    --bg-footer: #1e3a5f;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
    /* Touch target mínimo (acessibilidade) */
    --touch-target: 44px;
    /* Safe area para dispositivos com notch */
    --safe-top: env(safe-area-inset-top, 0);
    --safe-right: env(safe-area-inset-right, 0);
    --safe-bottom: env(safe-area-inset-bottom, 0);
    --safe-left: env(safe-area-inset-left, 0);
}

body {
    font-family: var(--font-main);
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    min-height: 100%;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Imagens responsivas por padrão (não estouram o container) */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[width][height] {
    height: auto;
}

/* Exceção: ícones com tamanho fixo mantêm dimensões */
header img,
#dark-mode-toggle img,
#btn-topo img,
.stack-item img,
#redes-sociais img,
.servico img,
#carrossel-servicos button img {
    max-width: none;
}

/*------------- EXPLICAÇÃO SERVIÇOS ---------------*/
.container-modal{
    display: none;
    margin-left: 1rem;
    margin-right: 1rem; 
    position: fixed;        
    top: 50%;              
    left: 50%;      
    transform: translate(-50%, -50%);
    z-index: 9999; 
    opacity: 0;
    transition: opacity 0.3s ease;   
}

.modal {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 48px 56px;
    border-radius: var(--radius-lg);
    font-size: 1.05rem;
    line-height: 1.7;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    max-width: min(90vw, 560px);
    max-height: 85vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal h4{
    text-transform: uppercase;
    margin: 12px 0px;
    color: var(--primary-color);
}

.botoes-modal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.botoes-modal button,
.botoes-modal .btn-modal-link {
    background-color: var(--primary-color);
    border: none;
    font-size: 14px;
    padding: 12px 20px;
    margin: 12px;
    color: var(--background-color);
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
}

.botoes-modal .btn-modal-link {
    text-decoration: none;
    display: inline-block;
}

.botoes-modal .btn-modal-link:hover {
    background-color: var(--primary-hover, var(--secondary-color));
    transform: translateY(-2px);
    color: var(--background-color);
}

.botoes-modal button:hover {
    background-color: var(--primary-hover, var(--secondary-color));
    transform: translateY(-2px);
}

.botoes-modal button.close {
    background-color: var(--background-color);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
}

.botoes-modal button.close:hover {
    background-color: var(--text-color);
    color: var(--background-color);
    border-color: var(--text-color);
}

/*------------- MODO ESCURO -----------------*/
.darkmode {
    --background-color: #0f172a;
    --text-color: #e2e8f0;
    --text-muted: #94a3b8;
    --primary-color: #3b82f6;
    --primary-hover: #60a5fa;
    --secondary-color: #1e40af;
    --accent-color: #fbbf24;
    --bg-footer: #0f172a;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.4);
}

#dark-mode-toggle{
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

#dark-mode-toggle img{
    width: 24px;
    transition: transform 0.3s ease;
}

#dark-mode-toggle img:last-child{
    display: none;
}

#dark-mode-toggle img:first-child{
    display: inline;
}

.darkmode #dark-mode-toggle img:last-child{
    display: inline;
}

.darkmode #dark-mode-toggle img:first-child{
    display: none;
}

#dark-mode-toggle:hover{
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* ---------------- HEADER STYLES --------------- */
header {
    padding: 12px 24px;
    padding-top: max(12px, var(--safe-top));
    padding-left: max(24px, var(--safe-left));
    padding-right: max(24px, var(--safe-right));
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--background-color);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header h2,
header .logo {
    font-size: 1.75rem;
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    cursor: pointer;
}

header h2 a,
header .logo a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

header h2:hover,
header .logo:hover,
header h2 a:hover,
header .logo a:hover {
    color: var(--primary-color);
}

header nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

header nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

header nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

header nav a:hover {
    color: var(--primary-color);
}

header nav a:hover::after {
    width: 100%;
}

/* ----------------- HOME STYLES ----------------- */

#home {
    padding: 0 0 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, var(--background-color) 0%, rgba(37, 99, 235, 0.04) 100%);
    background-color: var(--background-color);
}

#apresentacao {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
    gap: 60px;
    min-height: 86vh;
    padding: 0 20px;
    width: 100%;
    min-width: 0;
}

#apresentacao figure {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

#foto-notion {
    max-width: min(480px, 100%);
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    transition: transform 0.4s ease, rotate 0.4s ease, box-shadow 0.3s ease;
}

#foto-notion:hover {
    transform: scale(1.15);
    rotate: 12deg;
    cursor: pointer;
}

#texto-apresentacao {
    max-width: min(630px, 100%);
    width: 100%;
    min-width: 0;
    text-align: left;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-color);
}

.texto-apresentacao-inner {
    display: block;
}

#texto-apresentacao p,
#texto-apresentacao h1 {
    margin-bottom: 0.35em;
}

#texto-apresentacao p {
    display: block;
}

/* Linha 1: Me chamo Isis Beatriz de Alencastro — só o nome em negrito */
#texto-apresentacao .linha-nome {
    font-size: 28px;
    display: block;
    font-weight: 400;
    margin-bottom: 0.25em;
    line-height: 1.2;
}

#texto-apresentacao .linha-nome strong {
    font-weight: 700;
}

/* Linha 2: E sou [Stack] */
#texto-apresentacao .linha-typing {
    white-space: nowrap;
}

#texto-apresentacao #ola-principal {
    font-size: 52px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    display: block;
    margin-bottom: 0.2em;
    color: var(--primary-color);
}

#auto-typing {
    border-right: 2px solid var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
}

#texto-apresentacao .acoes-home {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

#texto-apresentacao a {
    padding: 14px 28px;
    font-size: 18px;
    background-color: var(--primary-color);
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--background-color);
    letter-spacing: 1px;
}

#texto-apresentacao a:hover {
    background-color: var(--primary-hover, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

#texto-apresentacao .btn-contraste {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

#texto-apresentacao .btn-contraste:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.btns-apresentacao {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.btns-apresentacao a {
    margin-top: 0;
}

#texto-apresentacao a.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

#texto-apresentacao a.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

/* ----------------- STACK STYLES -----------------*/

#stacks {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--background-color);
    border-radius: var(--radius);
    margin: 60px auto;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

#icones-stacks {
  display: flex;
  gap: 32px;
  animation: scroll 25s linear infinite;
  width: max-content; 
}

.stack-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-item img {
  max-width: 64px;
  margin: 0px 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(40%) brightness(0.9);
}

.stack-item img:hover {
  transform: scale(1.25) rotate(4deg);
  filter: grayscale(0%) brightness(1);
  cursor: pointer;
}



/* Loop infinito */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ----------------- SOBRE MIM STYLES ----------------- */

#sobre {
    padding: 100px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    min-height: 90vh;
    background-color: var(--background-color);
}

#sobre h3 {
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
}

/* Linha decorativa abaixo do título */
#sobre h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

#sobre-mim {
    max-width: 1000px;
    background: var(--background-color);
    line-height: 1.7;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    padding: 40px 56px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    transition: box-shadow var(--transition), transform var(--transition);
}

#sobre-mim:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

#dados-sobre {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

#dados-sobre p {
    max-width: 600px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

#foto-sobre img {
    max-width: 240px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(24, 92, 182, 0.25);
}

#foto-sobre img:hover {
    transform: scale(1.06);
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(24, 92, 182, 0.4);
}

#infos-sobre {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Redes sociais: sempre em uma única linha, sem coluna */
#redes-sociais {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

#redes-sociais a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#redes-sociais img {
    width: 34px;
    height: 34px;
    margin: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(40%);
}

#redes-sociais img:hover {
    transform: scale(1.25) rotate(6deg);
    filter: grayscale(0%);
    cursor: pointer;
}

#texto-sobre {
    font-size: 20px;
    text-align: justify;
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 600;
}

/*---------------------- SERVIÇOS STYLES ---------------------------*/
#servicos {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    min-height: 100vh;
    color: var(--background-color);
    background-color: var(--background-color);
}

#servicos h3 {
    margin-top: 24px;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
}

#servicos h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

#carrossel-servicos {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    position: relative;
}

#lista-servicos {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 16px 0;
    width: 100%;
    min-width: 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

#lista-servicos::-webkit-scrollbar {
    display: none;
}
.servico {
    flex: 0 0 calc(33.333% - 21px);
    min-width: min(320px, 100%);
    background: var(--background-color);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid var(--primary-color);
    min-height: 480px;
    margin: 12px 0;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
}

.servico:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.servico img {
    max-width: 80px;
    margin-bottom: 16px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(40%) brightness(0.9);
}

.servico img:hover {
    transform: scale(1.2) rotate(6deg);
    filter: grayscale(0%) brightness(1);
    cursor: pointer;
}

.servico h4 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.servico p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    text-align: center;
    font-weight: 600;
}

.servico > button {
    margin-top: 12px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.1;
    background-color: var(--primary-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    color: var(--background-color);
    text-transform: uppercase;
    font-weight: 600;
}
.servico > button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

#carrossel-servicos > button {
    background: var(--primary-color);
    border: none;
    color: var(--background-color);
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#carrossel-servicos > button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

#carrossel-servicos button img {
    width: 24px;
}



/*---------------------- PROJETOS STYLES ---------------------------*/

#projetos {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    min-height: 100vh;
    background-color: var(--background-color);
}

#lista-projetos {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#projetos h3 {
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
}

#projetos h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

.projeto {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    background: var(--background-color);
    box-shadow: var(--shadow-md);
    margin: 16px auto;
    border-radius: var(--radius);
    transition: transform var(--transition), box-shadow var(--transition);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    border: 2px solid var(--primary-color);
    gap: 28px;
}

.projeto:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.projeto img {
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(24, 92, 182, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.projeto img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(24, 92, 182, 0.4);
}

.infos-projeto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

#projetos .infos-projeto h3,
.infos-projeto h3,
.infos-projeto h4 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--secondary-color);
}

.titulo-secao {
    font-size: 2.25rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
    color: var(--primary-color);
}

.titulo-secao::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

.infos-projeto p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    color: var(--text-color);
}

.infos-projeto a {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--background-color);
    background-color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 6px;
    width: fit-content;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.infos-projeto a:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    cursor: pointer;
}

#btn-pagprojeto{
    padding: 14px 32px;
    font-size: 18px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 12px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    color: var(--background-color);
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

#btn-pagprojeto:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

#btn-voltar-home {
    display: block;
    width: fit-content;
    margin: 60px auto 0;
    padding: 14px 32px;
    font-size: 18px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

#btn-voltar-home:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

/*---------------------- CONTATO STYLES ---------------------------*/

#contato {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    min-height: 80vh;
    background-color: var(--bg-footer);
    color: #fff;
}

#titulos-contato{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-weight: 600;

}

#contato h3 {
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 4px;
    text-align: center;
}

#titulos-contato h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: white;
    margin: 0px auto 12px;
    border-radius: 2px;
}

#titulos-contato button{
    padding: 14px 32px;
    font-size: 18px;
    background-color: #185cb6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 12px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

#info-contato {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

#info-contato section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
    flex: 1;
    min-width: 220px;
}

#info-contato h4 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    color: var(--secondary-color);
    text-align: center;
}

#info-contato p {
    color: white;
    font-size: 18px;
    text-align: center;
}

.redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.links-contato {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.links-contato:hover {
    color: #0f3d7a;
    transform: translateY(-2px);
    cursor: pointer;
}

#btn-email {
    padding: 14px 32px;
    font-size: 18px;
    background-color: #185cb6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#btn-email:hover {
    background-color: #0f3d7a;
    transform: translateY(-2px);
}

#btn-email a {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

/*---------------------- BOTÃO TOPO STYLES ---------------------------*/

#btn-topo {
    position: fixed;
    bottom: max(20px, var(--safe-bottom));
    right: max(20px, var(--safe-right));
    padding: 14px;
    min-width: var(--touch-target);
    min-height: var(--touch-target);
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 999;
    transition: background-color var(--transition), transform var(--transition);
}

#btn-topo:hover {
    background-color: var(--primary-hover, var(--secondary-color));
    transform: translateY(-2px);
}

#btn-topo img {
    width: 24px;
    height: 24px;
    display: block;
}

