@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    overflow-x: hidden; 
    position: relative;
    scroll-behavior: smooth;
}

section {
    padding: 90px 8%;
    scroll-margin-top: 70px;
    width: 100%; 
    overflow: hidden; 
}

/* 2. BLOQUEIO TOTAL EM BOTÕES E INTERAÇÕES (Onde não faz sentido copiar texto) */
/* Aqui o texto nunca será selecionado, nem segurando o dedo. */
.btn-default, 
.btn-default-2, 
.filter-btn, 
.nav-item a,
.mobile-menu,
.card-zoom-icon,
.lightbox-nav,
.footer-social-link,
#arrow_home {
    -webkit-user-select: none;
    user-select: none;
}

/* 3. TEXTOS GERAIS (Títulos, parágrafos, spans) */
/* Aqui permitimos a seleção, mas como removemos o 'highlight' no passo 1, 
   o navegador só vai mostrar as "alças" azuis se o usuário pressionar e segurar. */
h1, h2, h3, h4, h5, p, span, li:not(.nav-item) {
    -webkit-user-select: text;
    user-select: text;
    /*Evita que o Safari mostre o menu de contexto ao segurar links/imagens */
    -webkit-touch-callout: default; 
}

/* 3. LIMPEZA ADICIONAL PARA IMAGENS (Evita que o menu de "Salvar imagem" apareça fácil demais ao clicar) */
img {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.section-title {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 500;
    text-transform: uppercase;
    color: #466088;
}

.section-subtitle {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    color: #0F172A;
}

.section-subtitle-smaller-1 {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    color: #0F172A;
}

.section-subtitle-smaller-2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0F172A;
}

.section-description {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #475569;
}

.section-description-2 {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.8;
}

.btn-default {
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #f59e0b;
    min-width: 160px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 14px 16px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-default:hover {
    background: #466088;
}

.btn-default .animation {
    border-radius: 100%;
    animation: ripple 0.6s linear infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}

.btn-default-2 {
    --color: #466088;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(3.7px);
    -webkit-backdrop-filter: blur(3.7px);
    border-radius: 10px;
    outline: 0;
    min-width: 160px;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 600;
    border: 1px solid;
    color: var(--color);
    z-index: 1;
    box-shadow:
        inset 0 0 0 3px var(--color),
        0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.btn-default-2::before, .btn-default-2::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color);
    transition: 1s ease;
}

.btn-default-2::before {
    top: -1em;
    left: -1em;
}

.btn-default-2::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
}

.btn-default-2:hover::before, .btn-default-2:hover::after {
    height: 410px;
    width: 410px;
}

.btn-default-2:hover {
    color: rgb(10, 25, 30);
    color: #fff;
}

.btn-default-2:active {
    filter: brightness(.8);
}
