/* ============================
   CONFIGURAÇÕES GERAIS
============================ */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
}

body.home {
    background: #ffffff;
}

/* ============================
   HEADER AZUL
============================ */
header {
    width: 100%;
    background: #004080;
    padding: 50px 0;
    color: #fff;
}

header .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============================
   MENU
============================ */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.menu li a:hover {
    color: #ccc;
}

/* ============================
   DROPDOWN
============================ */
.dropdown {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 28px;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    border-radius: 6px;
    padding: 0;
    box-shadow: 0px 4px 10px #0003;
    flex-direction: column;
}

.dropdown:hover .submenu {
    display: flex;
}

.submenu li a {
    color: #004080;
    padding: 10px 20px;
    display: block;
}

.submenu li a:hover {
    background: #eeeeee;
}

/* ============================
   BOTÃO ADM
============================ */
.btn-acesso {
    background: #0099ff;
    padding: 10px 18px;
    border-radius: 6px;
    color: white;
}

.btn-acesso:hover {
    background: #007acc;
}

/* ============================
   CARROSSEL BOOTSTRAP
============================ */
.carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

/* ============================
   BANNER PRINCIPAL
============================ */
.banner {
    width: 100%;
    height: 350px;
    background: url("botão.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    text-align: center;
    color: white;
}

.banner .btn {
    background: #004080;
    padding: 12px 22px;
    margin-top: 15px;
    display: inline-block;
    border-radius: 6px;
    color: white;
}

/* ============================
   ACESSO RÁPIDO
============================ */
.acesso-rapido {
    text-align: center;
    margin: 50px 0;
}

.acesso-rapido .icones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* ============================
   SEÇÃO DEPOIMENTOS
============================ */
.depoimentos {
    background: #e2e2e2;
    padding: 40px;
    text-align: center;
}

.depoimentos blockquote {
    font-size: 22px;
    font-style: italic;
}

/* ============================
   FOOTER
============================ */
footer {
    background: #004080;
    padding: 20px 0;
    text-align: center;
    color: white;
}

footer .redes a {
    color: #aad4ff;
    margin: 0 10px;
    text-decoration: none;
}

footer .redes a:hover {
    color: white;
}


.carrossel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1f0d88;
}

.carrossel-container {
  position: relative;
  max-width: 1600px;
  margin: auto;
}

.slide {
  display: none;
  width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.active {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
}

.prev {
  left: 10px;
}

