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

body {
    background-color: #F9F5EC;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 5px;
    background-color: #4E342E;
}

.logo img {
    width: 85px;
    height: auto;
    margin-left: 80px;
    margin-bottom: 5px;
    margin-top: 8px;
    border-radius: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    margin-right: 60px;
}

nav ul li {
    position: relative;
}

nav > ul > li {
    position: relative;
}

nav > ul > li:not(:last-child)::after {
    content: "|";
    color: #fff;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
}


nav ul li a, .link {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    
}

nav ul li:hover {
    background-color: #145A32;
    border-radius: 5px;
}

nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #4E342E;
    list-style: none;
    padding: 5px 0;
    min-width: 260px;
    z-index: 1000;
    white-space: normal;
    word-wrap: break-word;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li a {
    color: #fff;
    padding: 10px 16px;
    white-space: normal;
    max-width: 300px;
    
}

nav ul li ul li a:hover {
    background-color: #145A32;
    
    
}

/* Slide */
.slideshow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider {
    width: 1922px;
    height: 595px;
    overflow: hidden;
}

.slides {
    width: 400%;
    height: 400px;
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    width: 25%;
    position: relative;
    transition: 2s;
}
.slide img {
    width: 100%;
    height: 780px;
    object-fit: cover;
}

/* Botões manuais */
.manual-navigation {
    position: absolute;
    margin-top: 150px;         /* distância da parte superior da imagem */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 10;
}

.manual-btn {
    width: 12px;
    height: 12px;
    border: 2px solid #F1C40F;
    border-radius: 50%;
    cursor: pointer;
    transition: .4s;
    background: transparent;
}

.manual-btn:hover {
    background: #E67E22;
}

/* Esconde os botões automáticos */
.navigation-auto {
    display: none;
}

/* Troca dos slides */
#radio1:checked ~ .first {
    margin-left: 0;
}

#radio2:checked ~ .first {
    margin-left: -25%;
}

#radio3:checked ~ .first {
    margin-left: -50%;
}

/* Sobre Nós */
.section-sobrenos {
    position: relative;
    background: linear-gradient(to right, #fff, #fdf6f9);
    padding: 60px 20px;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.container-sobrenos {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.texto-sobrenos {
    flex: 1 1 500px;
}

.subtitulo-sobrenos {
    color: #E67E22;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 18px;
}

.titulo-sobrenos {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.descricao-sobrenos {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.botao-leia {
    display: inline-block;
    background-color: #145A32;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.3s;
}

.botao-leia:hover {
    background-color: #E67E22;
}

.imagem-sobrenos {
    flex: 1 1 500px;
    text-align: center;
}

.imagem-sobrenos img {
    width: 450px;
    border-radius: 20px;
}

.circulo-topo {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #F1C40F, #E67E22);
    border-radius: 50%;
    z-index: 0;
}

/* Atividades */
.titulo-atividades {
    text-align: center;
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #145A32;
    font-weight: bold;
    position: relative;
    width: 100%;
}

.titulo-atividades::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E67E22;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.atividades {
    width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 20px;
    margin-top: 38px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.atividade {
    display: flex;
    flex-direction: row;
    background-color: #145A32;
    color: white;
    width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.atividade img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.descricao {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.descricao h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.descricao a {
    text-decoration: none;
}

.descricao a:hover h3 {
    color: #dddd;
}

.descricao p {
    font-size: 16px;
}

/* Contato */
.titulo-regioes {
    text-align: center;
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #145A32;
    font-weight: bold;
    position: relative;
    width: 100%;
}

.titulo-regioes::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E67E22;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.section-contato {
    padding: 40px 20px;
    color: #000;
    text-align: center;
    margin-top: 30px;
    background: linear-gradient(to right, #fff, #fdf6f9);
}

.container-contato{
    display: flex;
    justify-content: center;
    width: 1030px;
    margin: 0 auto;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 20px;
}

.subtitulo-regioes {
    font-size: 20px;
    color: #E67E22;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-contato {
    background-color: #145A32;
    border-radius: 10px;
    padding: 25px;
    max-width: 450px;
    color: white;
}

.info-contato h2 {
    font-size: 23px;
    margin-bottom: 20px;
    color: white;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
    font-size: 18px;
    word-break: break-word;
}

.contato-item a {
    color: inherit;
    text-decoration: none;
}

.contato-item a:hover {
    color: #dddd;
}

.contato-item i {
    color: #E67E22;
    font-size: 1.2rem;
    min-width: 20px;
}

.info-contato img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-top: 15px;
}

.mapa {
    border: 0;
    border-radius: 10px;
    width: 600px;
    height: 450px;
    max-width: 100%;
}

/* SOCIAL */
.social-media {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.social-media a {
    background-color: #F1C40F;
    color: #4E342E;
    font-size: 25px;
    width: 50px;
    height: 50px;
    padding: 11px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-media a:hover {
    background-color: #E67E22;
    color: #fff;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #4E342E;
    color: white;
    padding: 40px 20px 10px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 90px;
    margin: 0 auto 10px;
    display: block;
    border-radius: 50px;
}

.footer-logo p {
    max-width: 250px;
    font-size: 18px;
}

.footer-contato, .footer-redes {
    min-width: 200px;
}

.footer h4 {
    font-size: 25px;
    margin-bottom: 10px;
    border-bottom: 1px solid #F1C40F;
    display: inline-block;
}

.footer p {
    margin: 6px 0;
    font-size: 18px;
}

.footer-copy {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 10px;
}

/* =======================================
RESPONSIVIDADE
======================================= */

/* Notebook */
@media (max-width: 1400px){

    .atividades{
        width:95%;
    }

    .container-contato{
        width:95%;
    }

    .slider{
        width:100%;
    }

}


/* Tablet */
@media (max-width:1024px){

    header{
        flex-direction:column;
        gap:20px;
        padding:20px;
    }

    .logo img{
        margin:0;
        width:75px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        margin:0;
    }

    nav > ul > li:not(:last-child)::after{
        display:none;
    }

    /* Slide */

    .slider{
        width:100%;
        height:420px;
    }

    .slide img{
        height:420px;
    }

    .manual-navigation{
        margin-top:-30px;
    }

    /* Sobre nós */

    .container-sobrenos{
        flex-direction:column;
        text-align:center;
    }

    .imagem-sobrenos img{
        width:100%;
        max-width:420px;
    }

    /* Atividades */

    .atividade{
        width:100%;
    }

    /* Contato */

    .container-contato{
        flex-direction:column;
        align-items:center;
    }

    .info-contato{
        max-width:100%;
    }

    .mapa{
        width:100%;
        height:350px;
    }

    /* Footer */

    .footer-container{
        justify-content:center;
        text-align:center;
    }

}


/* Celular */
@media (max-width:768px){

    header{
        padding:15px;
    }

    nav ul{
        flex-direction:column;
        width:100%;
        gap:5px;
    }

    nav ul li{
        width:100%;
        text-align:center;
    }

    nav ul li ul{
        position:static;
        width:100%;
        box-shadow:none;
    }

    /* Slide */

    .slider{
        height:260px;
    }

    .slides{
        height:260px;
    }

    .slide img{
        height:260px;
    }

    .manual-navigation{
        margin-top:-20px;
        gap:20px;
    }

    /* Sobre Nós */

    .section-sobrenos{
        padding:40px 20px;
    }

    .titulo-sobrenos{
        font-size:2rem;
    }

    .imagem-sobrenos img{
        width:100%;
    }

    /* Atividades */

    .atividades{
        width:95%;
        padding:15px;
    }

    .atividade{
        flex-direction:column;
    }

    .atividade img{
        width:100%;
        height:220px;
    }

    .descricao{
        padding:20px;
    }

    /* Contato */

    .container-contato{
        width:95%;
    }

    .info-contato{
        padding:20px;
    }

    .info-contato img{
        width:180px;
        height:180px;
    }

    .mapa{
        height:300px;
    }

    /* Redes */

    .social-media{
        bottom:15px;
        right:15px;
    }

    .social-media a{
        width:45px;
        height:45px;
        font-size:22px;
        padding:10px;
    }

    /* Footer */

    .footer{
        text-align:center;
    }

    .footer-logo p{
        max-width:100%;
    }

}


/* Celulares pequenos */
@media (max-width:480px){

    .titulo-sobrenos{
        font-size:1.6rem;
    }

    .titulo-atividades,
    .titulo-regioes{
        font-size:26px;
    }

    .descricao h3{
        font-size:20px;
    }

    .descricao p{
        font-size:15px;
    }

    .contato-item{
        font-size:15px;
    }

    .footer h4{
        font-size:22px;
    }

    .footer p{
        font-size:15px;
    }

}