/*-- ------------------------------------------------------------------------ --*/
/*@HD: ### Fonte Google  ### */
/*-- ------------------------------------------------------------------------ --*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*-- ------------------------------------------------------------------------ --*/
/*@HD: ### Definicoes Gerais - Root  ### */
/*-- ------------------------------------------------------------------------ --*/

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    text-decoration: none;
}

:root{
    --text-color: #f5f5f5;
    --hover-color: #12f7ff;
    --bg-color: #0f062e;
    --secon-bg-color: #292e33;
    --big-font: 2.5rem;
    --normal-font: 2rem;
    --neon-box-shadow:0 0 .5rem #12f7ff;
    --h2-font: 3rem;
    --font-neon-text-shadow:
        0 0 10px rgba(18, 247, 255, 0.3),
        0 0 20px rgba(18, 247, 255, 0.3),
        0 0 30px rgba(18, 247, 255, 0.3),
        0 0 40px rgba(18, 247, 255, 0.3),
        0 0 70px rgba(18, 247, 255, 0.3),
        0 0 80px rgba(18, 247, 255, 0.3),
        0 0 100px rgba(18, 247, 255, 0.3),
        0 0 150px rgba(18, 247, 255, 0.3);
}

::-webkit-scrollbar{
    height: 0;
    width: .5rem;
}

::-webkit-scrollbar-track{
    background: var(--secon-bg-color);
}

::-webkit-scrollbar-thumb{
    background: var(--hover-color);
    border-radius: 5rem;
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Estruturas ### */ 
/* ------------------------------------------------------------------------ */

/* Corpo */
body {
    font-family: "Poppins", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 100%;
}

/* Cabeçalho */
header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 10%;
}

/* Cabeçalho Fixo */
header.sticky{
    background: var(--bg-color);
    border-bottom: 1px solid var(--secon-bg-color);
    padding: 12px 10%;
}

/* Sessao */
section{
    padding: 100px 10%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}


/* ------------------------------------------------------------------------ */
/* @HD: ### Footer - Rodape ### */
/* ------------------------------------------------------------------------ */
footer{
    padding: 1.5rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer p{
    color: #bdbdbd;
}

footer a{
    display: inline-flex;
    justify-content: center;
    color: var(--text-color);
    background: var(--hover-color);
    padding: .6rem;
    border-radius: 5px;
}

footer a i{
    font-size: 1rem;
    color: var(--secon-bg-color);
}

/* ------------------------------------------------------------------------ */
/* @HD: Texto Padrão
/* ------------------------------------------------------------------------ */

.textoPADRAO {
    width: 100%;
    text-align: center;
    color: var(--hover-color);
}

.textoPADRAO h1 {
    font-weight: 700;
    font-size: var(--big-font);
    margin-bottom: 1rem;
}

.textoPADRAO h2{
    font-weight: 700;
    font-size: var(--normal-font);
}

.textoPADRAO span{
    color: #fdfdfd;
    font-size: .8rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/*-- ------------------------------------------------------------------------ --*/
/*@HD: ### Barra de Navegaca  ### */
/*-- ------------------------------------------------------------------------ --*/

/* Logo - Fonte / Tamanho / Espcamento */
.logo {
    display: flex;
    width: 160px;
    height: 60px;
}

/* Menus - Responsivo */
.navlist{
    display: flex;
}

/* Menus - Cor / Tamanho / Espacamento */ 
.navlist a{
    display: inline-block;
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px;
    animation: slideAnimation 1s ease forwards;
    animation-delay: calc(.3s * var(--i));
    opacity: 0;
}

 /* Menus - Cor de Fundo */ 
.navlist a:hover{
    color: var(--hover-color);
    text-shadow:
        0 0 10px rgba(18, 247, 255, 0.6),
        0 0 20px rgba(18, 247, 255, 0.6),
        0 0 30px rgba(18, 247, 255, 0.6),
        0 0 40px rgba(18, 247, 255, 0.6),
        0 0 70px rgba(18, 247, 255, 0.6),
        0 0 80px rgba(18, 247, 255, 0.6),
        0 0 100px rgba(18, 247, 255, 0.6),
        0 0 150px rgba(18, 247, 255, 0.6);
}

.navlist a.active{
    color: var(--hover-color);
}

/* ------------------------------------------------------------------------ */
/* @HD: ### IconeMenu  ### */ 
/* ------------------------------------------------------------------------ */
#menu-icon{
    font-size: 1.5rem;
    z-index: 10001;
    cursor: pointer;
    margin-left: 25px;
    background-color: var(--hover-color);
    border-radius: 3px;
    color: var(--secon-bg-color);
    display: none;
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Botoes ### */ 
/* ------------------------------------------------------------------------ */

.btn-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 320px;
    height: 45px;
    margin: 2rem auto;
}

.btn-box .btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: var(--hover-color);
    color: var(--bg-color);
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: .6s;
    box-shadow: var(--neon-box-shadow);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--hover-color);
    cursor: pointer;
}


.btn:hover{
    color: var(--hover-color);
}

.btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-color);
    width: 0;
    height: 100%;
    z-index: -1;
    transition: .4s;
}

.btn:hover::before{
    width: 100%;
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Icones Sociais ### */ 
/* ------------------------------------------------------------------------ */
.social-icons{
    margin: 10px;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.container-social-icons{
    justify-content: center;
    align-items: center;    
}

.social-icons a{
    display: inline-flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: var(--hover-color);
    border: 2px solid var(--hover-color);
    transition: .6s;
    box-shadow: 0 0 0.3rem #12f7ff;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-icons a i{
    font-size: 1.5rem;
}

.social-icons a:hover{
    color: var(--bg-color);
}

.social-icons a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--hover-color);
    transition: .6s;
    z-index: -1;
}

.social-icons a:hover::before{
    width: 100%;
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Botões Sociais GeoSampa (estilo botão idioma) ### */
/* ------------------------------------------------------------------------ */
.social-icons-geosampa {
    display: flex;
    gap: 15px;
    margin: 10px;
    justify-content: center;
    align-items: center;
}

.social-btn-geosampa {
    display: inline-flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    background: var(--bg-color);
    border: 1px solid var(--hover-color) !important;
    outline: 2px solid var(--bg-color) !important;
    box-shadow: var(--neon-box-shadow) !important;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--hover-color);
}

.social-btn-geosampa i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.social-btn-geosampa:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--hover-color) !important;
    border-color: var(--hover-color) !important;
}

.social-btn-geosampa:hover i {
    color: var(--bg-color);
}

.social-btn-geosampa::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--hover-color);
    transition: 0.3s;
    z-index: 0;
}

.social-btn-geosampa:hover::before {
    width: 100%;
}

/* ------------------------------------------------------------------------ */
/* @HD: ### SESSAO - home/Home ### */ 
/* ------------------------------------------------------------------------ */
.inicio{
    min-height: 110vh;
    margin-top: 2rem;    
}

/* ------------------------------------------------------------------------ */
/* @HD: ### sessao1 ### */
/* ------------------------------------------------------------------------ */
.sessao1{
    min-height: 110vh;
    margin-top: 2rem;
    background: var(--secon-bg-color);
}

/*-- ------------------------------------------------------------------------------------------------------------------------------------------------ --*/
/*@HD: ### Pagina Inicial  ### */
/*-- ------------------------------------------------------------------------------------------------------------------------------------------------ --*/

.pagina_inicial {
    width: 80%;
    margin: auto;
    padding: 20px;
    color: var(--hover-color);
    text-align: center;
}

p {
    font-size: 18px;
    font-weight: bold;
    color: #777;
}

ul {
    list-style: disc;
}

ul li {
    color: #555;
}

.highlight strong {
    color: #12f7ff;
    font-weight: bold;
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Formulário de Busca ### */
/* ------------------------------------------------------------------------ */

.form-container {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 15px;
    border: 2px solid var(--hover-color);
    box-shadow: var(--neon-box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--hover-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 0.8rem;
    background: var(--secon-bg-color);
    border: 2px solid var(--hover-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus {
    outline: none;
    box-shadow: var(--neon-box-shadow);
    background: #1a1a2e;
}

.form-group input[type="text"]::placeholder {
    color: #888;
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Resultados ### */
/* ------------------------------------------------------------------------ */

.resultados {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.resultado-container,
.erro-container {
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 15px;
    border: 2px solid var(--hover-color);
    box-shadow: var(--neon-box-shadow);
}

.resultado-container h3,
.erro-container h3 {
    color: var(--hover-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.resultado-info {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secon-bg-color);
    border-radius: 8px;
    border: 1px solid var(--hover-color);
}

.info-item strong {
    color: var(--hover-color);
    font-size: 1.1rem;
}

.info-item span {
    color: var(--text-color);
    font-size: 1.1rem;
}

.erro-container {
    border-color: #ff4444;
    box-shadow: 0 0 .5rem #ff4444;
}

.erro-container h3 {
    color: #ff4444;
}

.erro-container p {
    color: #ffcccc;
    font-size: 1rem;
    text-align: center;
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Checkbox ### */
/* ------------------------------------------------------------------------ */

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--hover-color);
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Downloads ### */
/* ------------------------------------------------------------------------ */

.resultado-downloads {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--secon-bg-color);
    border-radius: 10px;
    border: 1px solid var(--hover-color);
}

.resultado-downloads h4 {
    color: var(--hover-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.download-item {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-color);
    border-radius: 8px;
    border: 1px solid rgba(18, 247, 255, 0.3);
}

.download-item h5 {
    color: var(--hover-color);
    margin-bottom: 0.5rem;
}

.download-item p.success {
    color: #4ade80;
}

.download-item p.error {
    color: #ff4444;
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Visualização de Imagens ### */
/* ------------------------------------------------------------------------ */

.resultado-imagens {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--secon-bg-color);
    border-radius: 10px;
    border: 1px solid var(--hover-color);
    max-width: 100%;
}

.resultado-imagens h4 {
    color: var(--hover-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.imagens-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    align-items: start;
}

.imagem-item {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--hover-color);
    box-shadow: var(--neon-box-shadow);
    min-width: 0;
}

.imagem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.imagem-item h5 {
    color: var(--hover-color);
    font-size: 1.2rem;
    margin: 0;
}

.download-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: var(--hover-color);
    color: var(--bg-color);
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(18, 247, 255, 0.3);
}

.btn-download:hover {
    background: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(18, 247, 255, 0.5);
}

.btn-download i {
    font-size: 1rem;
}

.imagem-item img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid rgba(18, 247, 255, 0.3);
    margin-bottom: 0.5rem;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.imagem-item img:hover {
    transform: scale(1.02);
}

.imagem-info {
    text-align: center;
    color: #bdbdbd;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.detalhes-imagem {
    background: rgba(15, 6, 46, 0.6);
    border: 1px solid rgba(18, 247, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.detalhes-imagem h6 {
    color: var(--hover-color);
    margin: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(18, 247, 255, 0.3);
    padding-bottom: 0.3rem;
}

.detalhes-imagem .info-linha {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detalhes-imagem .info-linha:last-child {
    border-bottom: none;
}

.detalhes-imagem .info-label {
    color: #bdbdbd;
    font-weight: 500;
}

.detalhes-imagem .info-valor {
    color: var(--text-color);
    font-weight: 600;
}

.detalhes-imagem .info-destaque {
    color: var(--hover-color);
    font-weight: 700;
}

@media(max-width:768px){
    .imagens-grid {
        gap: 1rem;
    }
    
    .imagem-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .download-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-download {
        flex: 1;
        justify-content: center;
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
}

@media(max-width:480px){
    .imagens-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Modal de Visualização de Imagem ### */
/* ------------------------------------------------------------------------ */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 3px solid var(--hover-color);
    box-shadow: 0 0 30px rgba(18, 247, 255, 0.5);
    border-radius: 10px;
    cursor: zoom-in;
    transition: none;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
}

.modal-content.zoomed {
    cursor: zoom-out;
    max-width: none;
    max-height: none;
}

.modal-image-container {
    width: 100%;
    height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    position: relative;
}

.zoom-controls {
    position: absolute;
    top: 15px;
    left: 35px;
    display: flex;
    gap: 10px;
    z-index: 10001;
}

.zoom-btn {
    background: var(--hover-color);
    color: var(--bg-color);
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(18, 247, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-btn:hover {
    background: var(--text-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(18, 247, 255, 0.6);
}

.zoom-btn i {
    font-size: 24px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--hover-color);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
}

#modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--hover-color);
    padding: 10px 0;
    height: 50px;
    font-size: 1.2rem;
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Spinner - Icone de Carregamento ### */
/* ------------------------------------------------------------------------ */
.container-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--hover-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Progress Container - Status de Progresso ### */
/* ------------------------------------------------------------------------ */
.progress-container {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(18, 247, 255, 0.05);
    border: 2px solid var(--hover-color);
    border-radius: 10px;
    box-shadow: var(--neon-box-shadow);
    animation: fadeIn 0.3s ease-in;
}

.progress-spinner {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.spinner-loading {
    border: 6px solid rgba(18, 247, 255, 0.2);
    border-top: 6px solid var(--hover-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(18, 247, 255, 0.3);
}

.progress-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(15, 6, 46, 0.5);
    border-radius: 8px;
    border-left: 3px solid rgba(18, 247, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0.5;
}

.progress-item.active {
    opacity: 1;
    background: rgba(18, 247, 255, 0.1);
    border-left-color: var(--hover-color);
    box-shadow: 0 0 15px rgba(18, 247, 255, 0.2);
}

.progress-item.completed {
    opacity: 1;
    background: rgba(0, 255, 0, 0.05);
    border-left-color: #00ff00;
}

.progress-item.error {
    opacity: 1;
    background: rgba(255, 0, 0, 0.05);
    border-left-color: #ff0000;
}

.progress-item i {
    font-size: 1.5rem;
    color: rgba(18, 247, 255, 0.5);
    min-width: 24px;
}

.progress-item.active i {
    color: var(--hover-color);
}

.progress-item.completed i {
    color: #00ff00;
}

.progress-item.error i {
    color: #ff0000;
}

.progress-item span {
    color: var(--text-color);
    font-size: 1rem;
    flex: 1;
}

/* Timing Info - Tempo de processamento detalhado */
.timing-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(18, 247, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(18, 247, 255, 0.3);
}

.timing-info h4 {
    color: var(--hover-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: var(--font-neon-text-shadow);
}

.timing-info ul {
    list-style: none;
    padding: 0;
}

.timing-info li {
    color: var(--text-color);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(18, 247, 255, 0.1);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timing-info li:last-child {
    border-bottom: none;
}

.timing-info strong {
    color: var(--hover-color);
    text-transform: uppercase;
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

.timing-info em {
    color: rgba(245, 245, 245, 0.7);
    font-style: normal;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Parallax - Efeito Texto  ### */
/* ------------------------------------------------------------------------ */

.scroll-scale{
    opacity: 0;
    transform: scale(.9);
    transition: all 2s;
}

.show-items{
    opacity: 1;
    transform: translateX(0);
}

/* ------------------------------------------------------------------------ */
/* @HD: ### keyframes - Animacoes ### */
/* ------------------------------------------------------------------------ */

@keyframes slideAnimation{
    0%{
        opacity: 0;
        transform: translateY(100px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

/* ------------------------------------------------------------------------ */
/* @HD: ### Responsivo ### */
/* ------------------------------------------------------------------------ */

@media(max-width:1000px){
    header,
    header.sticky {
        padding: 15px 5%;
    }
    footer {
        padding: 15px 5%;
    }
}

@media(max-width:768px){
    #menu-icon{
        display: block;
        transition: all .4s ease;
    }

    #menu-icon.bx-x{
        transform: rotate(-360deg);
    }
    
    .logo {
        display: flex;
        width: 80px;
        height: 30px;
    }

    .navlist{
        display: flex;
        position: absolute;
        top: -1000px;
        right: 0;
        left: 0;
        flex-direction: column;
        background: var(--bg-color);
        text-align: left;
        padding: 0 5%;
        transition: all .45s ease;
    }
    
    .navlist a{
        display: block;
        padding-bottom: 1rem;
        font-size: 1rem;
    }
    
    .navlist.open{
        top: 100%;
    }

    footer p{
        font-size: .8rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media(max-width:420px){
    html{
        font-size: 80%;
    }
    
    footer p{
        font-size: .6rem;
    }
    
    .textoPADRAO h1 {
        font-size: 1.8rem;
    }
    
    .textoPADRAO h2{
        font-size: 1.5rem;
    }
}
