/*fundo principal*/
/*Opção 1: Padrão repetido (tiled pattern)*/
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('/assets/background/pattern_8734999.png');
    background-repeat: repeat; /* Isso faz o padrão se repetir */
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}


/*CSS Básico Aprimorado*/
/*body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('/assets/background/pattern_8734999.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    
    /* Garante que o fundo cubra toda a área */
   /* margin: 0;
    padding: 0;
}*/


/*Body original*/
/*body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('/assets/background/pattern_8734999.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    min-height: 100vh;
    overflow-x: hidden;
     position: relative;
}*/

/*header*/
.header {
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(50px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/*footer*/
.footer {
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    background-color: #ffffff00;
    /*background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);*/
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    padding: 3rem 1rem 1rem;
    width: 100%;
}
/* NAVEGAÇÃO DO CARROSSEL - ÍCONES CORRIGIDOS */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(34, 197, 94, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}