* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

header {
    width: 100%;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.logo img {
    height: 90px;
    width: 100px;

}

/* MENU NORMAL */
.menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.menu a {
    text-decoration: none;
    background-color: #ffffff;
    color: #555;
    padding: 14px 38px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.menu .btn {
    margin-top: 14px;
    background: #d46050;
    color: white;
    border: none;
    font-weight: bold;

}

#jardins{
    margin-bottom: 10px;
}

#idades{
    margin-bottom: 11px;
}

.saber{
    margin-top: 14px;

}

#menu-toggle {
    display: none;
}

/* --- HAMBURGER ICON --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 30px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 5px;
    transition: 0.4s;
}

/* --- ANIMAÇÃO PARA X --- */
#menu-toggle:checked+.hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#menu-toggle:checked+.hamburger span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked+.hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.sobre { text-decoration: none;
    background-color: #ffffff;
    color: #555;
    padding: 14px 38px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    grid-column: 6/8;
}
















#entrada {
    background-image: url(imagens/crianças3!.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-block: 20%;
}

body {
    font-family: 'Open Sans';
}

h1 {
    color: antiquewhite;
    font-size: 48px;

}

h2 {
    color: #701D1D;
    font-size: 32px;

}

h5 {
    color: #701D1D;
    font-size: 14px;
}

p {
    color: #701D1D;
    font-size: 20px;
}

.titulo {
    grid-column: 2/12;
    text-align: center;
}



img {

    width: 100%;
}

#servicos {
    padding-top: 130px;
    background-color: #D9D9D9;
    padding-bottom: 80px;

}

.grelha {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;


    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.texto_final {
    grid-column: span 6;
    margin-top: auto;
    margin-bottom: auto;
}

#img_final {
    grid-column-start: 8;
    grid-column-end: 13;

}

#conclusao {
    grid-column-start: 1;
    grid-column-end: 13;

    text-align: right;
}

#sobre-nos {
    padding-top: 70px;
    background-color: #C49393;
    padding-bottom: 90px;

}

#sobre {
    
    text-align: center;
    margin-bottom: 2%;
    margin-right: 15%;
    margin-left: 15%;


}

.galeria {
    grid-column: span 4;
}

#pose-1 {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.pose-2 {
    display: flex;
    justify-content: center;
    gap: 10px;

}


.footer {
    background: linear-gradient(135deg, #ffffff);
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

/* Layout lado a lado */
.footer-content {
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo à esquerda */
.footer-logo img {
    width: 140px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

/* Info à direita */
.footer-info {
    text-align: left;
}

.footer-info p {
    margin: 8px 0;
    font-size: 16px;
    line-height: 1.4;
}

/* Link de email com hover elegante */
.email-link {
    color: #683a3a;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: bold;
}

.email-link:hover {
    color: #a87878;
    text-decoration: underline;
}

/* Parte inferior do footer */
.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
}



#pagina_2 {
    background-image: url(imagens/entrada.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-block: 20%;
}

#nos {
    padding-top: 70px;
    background-color: #D9D9D9;
    padding-bottom: 70px;
}















/* Responsivo */
@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }


    header {
        width: 95%;
    }

    .hamburger {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 80px;
        right: 0px;
        background: white;
        width: 200px;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: none;
        z-index: 20;
        width: 100%;
    }

    #menu-toggle:checked~.menu {
        display: flex;
    }

}