* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #D3DAD9;
}

header {
    background-color: #44444E;
    padding: 20px;
}

.nav-item a, span {
    color: #fff;
}

.nav-item a:hover {
    background-color: #0d6efd;
    color: #fff;
}

.secao-1 {
    width: 500px;
    margin-left: 50px;
    margin-top: 50px;
}

.secao-1  h1{
    font-weight: bold;
}
.secao-1  h4{
   color: blue;
}

.secao-2{
    width: 500px;
    margin-top: 50px;
}
.img{
    width: 350px;
    margin: 0 auto;
    
}

.img img{
    margin-top: 50px;
    width: 200px;
    height: 200px;
    border-radius: 200px;
    
}

.rodape{
    margin-top: 100px;
}
.footer {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    color: #fff;
    padding: 40px 20px 0px;
    font-family: sans-serif;
    position: flex;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-section h2 {
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
}

.footer-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(11, 50, 247);
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin-right: 60px;
}

.footer-section ul li {
    margin: 10px 0;
    color: #ccc;
}

.footer-section ul li i {
    margin-right: 10px;
    color:rgb(11, 50, 247);
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: rgb(11, 50, 247);
    transition: 0.3s;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.socials a {
    display: inline-block;
    margin: 0 8px;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
}

.socials a:hover {
    color: rgb(11, 50, 247);
}

/* .newsletter form {
    display: flex;
    flex-direction: column;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 20px;
}

.newsletter button {
    padding: 10px;
    background:rgb(11, 50, 247);
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background:rgb(76, 101, 226);
} */

.footer-bottom {
    margin-top: 10px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
}

.footer-bottom p {
    margin-top: 20px;
    font-size: small;
}

/* #back-to-top {
    background:rgb(11, 50, 247);
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
}

#back-to-top:hover {
    background:rgb(76, 101, 226);
} */

/* Centralizar o carrossel dentro do main */
.carousel {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}

/* Carrossel ocupa altura fixa e imagem cobre tudo */
.carousel-inner {
    min-height: 350px;
    height: 350px;
}

.carousel-item {
    height: 350px;
}

.carousel-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    max-height: 350px;
    background: #eee;
}

/* Centralizar verticalmente o texto */
.carousel-caption {
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    text-align: center;
    padding-bottom: 0;
}

/* Camada escura sobre a imagem */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.5);
    z-index: 1;
}

/* Garante que o texto fique acima da camada escura */
.carousel-caption > * {
    position: relative;
    z-index: 1;
    color: #fff;
}