body {
    background-color: #1c2834;
    color: #ffffff;
    scroll-behavior: smooth;
}

.modal-body {
    color: #000;
}

.navbar {
    transition: background-color 0.3s;
}

.navbar.scrolled {
    background-color: rgba(12, 173, 255, 0.95) !important;
}

.navbar-brand,
.nav-link {
    color: #ffffff !important;
    font-weight: 600;
}

.hero {
    /*background: url('https://source.unsplash.com/1600x900/?volleyball') center/cover no-repeat;*/
    background: url('images/banner.jpeg') center/cover no-repeat;
    height: 100vh;
    position: relative;
}

.hero-overlay {
    background-color: rgba(28, 40, 52, 0.733);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: #ffffff;
}

.section-light {
    color: #1c2834;
    /*background-color: #0badff;*/
    /* background-image: radial-gradient(rgba(255, 255, 255, 0.433) 1px, transparent 1px);
        background-size: 20px 20px;
        */
    background: linear-gradient(135deg,
            #fff 20%,
            #a9e2ff 100%);
}

.section-white {
    /* background-color: #fff; */
    color: #1c2834;
    background-color: #fff;
    background-image: radial-gradient(#0badff 1px, transparent 1px);
    background-size: 40px 40px;

}

.card-glass {
    background: rgb(255, 255, 255);
    /*background: #1c2834;*/
    color: #1c2834;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

footer {
    background-color: rgba(12, 173, 255, 0.95);
    color: #1c2834;
}

.depoimentos-scroll {
    scroll-snap-type: x mandatory;
}

.depoimentos-scroll>div {
    scroll-snap-align: start;
    width: calc(100% / 1.2);
    /* Mobile: quase tela inteira */
}

@media(min-width: 576px) {

    /* Tablet */
    .depoimentos-scroll>div {
        width: calc(100% / 2.2);
        /* mostra ~2 por vez */
    }
}

@media(min-width: 992px) {

    /* Desktop */
    .depoimentos-scroll>div {
        width: calc(100% / 3.2);
        /* mostra ~3 por vez */
    }
}

form .form-control {
    border-radius: 0.5rem;
}


.depoimentos-scroll::-webkit-scrollbar {
    height: 10px;
    /* altura da barra horizontal */
}

.depoimentos-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    /* trilha com leve transparência */
    border-radius: 4px;
}

.depoimentos-scroll::-webkit-scrollbar-thumb {
    background: #0badff;
    /* cor da "bolinha" que arrasta */
    border-radius: 4px;
}

.depoimentos-scroll::-webkit-scrollbar-thumb:hover {
    background: #088ccc;
    /* cor um pouco mais escura ao passar o mouse */
}

a {
    text-decoration: none;
}

a.text-primary:hover {
    color: #ffffff !important;
    transition: color 0.3s;
}

a.text-dark:hover {
    color: #ffffff !important;
    transition: color 0.3s;
}

.flex-shrink-0 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.flex-shrink-1 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0badff !important;
    font-weight: bold;
    font-size: larger;
}

.flex-shrink-2 {
    color: #c6c6c6 !important;
}

.flex-shrink-3 {
    color: #fff !important;
}

.text-darkblue {
    color: #1c2834
}

.text-lightblue {
    color: #0badff
}

.text-gold {
    color: #d69d69
}

.text-white {
    color: #fff
}

.social-top {
    position: relative;
    z-index: 1051;
    /* maior que o da navbar (Bootstrap usa 1030) */
}

.flex-shrink-0 img {
    width: 100vh;
    height: 70vh;
}

.matricula-carousel-img {
    width: 100%;
    height: 480px !important;
    /* altura fixa para todas as imagens */
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
}

.depoimento-carousel-img {
    width: 100%;
    height: 280px !important;
    /* altura fixa para todas as imagens */
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
}

.text-normal {
    font-size: larger;
}

/*#depoimentos {
        height: 100%;
        margin-top: 50px;
        margin-bottom: 80px;
      }
        */

#depoimentos {
    scroll-margin-top: 150px;
}

#matriculas {
    scroll-margin-top: 80px;
}

#diferenciais {
    scroll-margin-top: 150px;
}

#transparencia {
    scroll-margin-top: 150px;
}

#diferencial h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* 
      #diferencial h2 {
        text-shadow: 1px 1px 0 #fff,
          2px 2px 4px rgba(0, 0, 0, 0.3);
      } */

.card-diferencial {
    background: linear-gradient(145deg, #0badff, #1cbaff);
    border-radius: 1rem;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-diferencial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}