 @import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400..700&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
 
 * {
    border: 0;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}

body {
    overflow-x: hidden;
}

nav {
    max-width: 100%;
    border-bottom: solid 4px #4c8989;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 3px solid #4c8989;
}

.logo {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 110px;
    margin-left: 10px;
}

.logo h1 {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    color: #4c8989;
    font-size: 2.7rem;
}

.navbar {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.navbar li {
    color: #4c8989;
    font-family: "Noto Serif", serif;
    font-weight: 600;
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.navbar li:not(#botao-rosa):hover {
    color: #dc8dae;
}

.navbar a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #4c8989;
    font-weight: 600;
}

#botao-rosa {
    background-color: #dc8dae;
    border: none;
    border-radius: 100px;
    color: #000000;
    text-align: center;
    align-items: center;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-size: 1.3rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#botao-rosa:hover {
    background-color: #d585a1;
    transform: scale(1.05);
}

.btn-primary-nav {
    background-color: #dc8dae;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.btn-primary-nav:hover {
    background-color: #d585a1;
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4c8989;
    margin: 4px 0;
    transition: 0.3s;
}

:root {
    --text-color: #4c4e52;
    --link-color: #4c4e52; 
    --title-color: #5d9a9a; 
    --social-icon-color: #4c8989; 
    --border-color: #5d9a9a; 
    --bg-color: #ffffff;
}

.cursive-font {
    font-family: 'Caveat', cursive; 
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--title-color); 
}

.main-footer {
    width: 100%;
    background-color: var(--bg-color);
    padding: 20px 0;
    margin-top: 50px;
    border-top: 5px solid var(--border-color); 
}

.footer-content {
    display: flex;
    justify-content: space-around; 
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.footer-col {
    padding: 0 15px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px; 
}

.footer-logo-img {
    width: 100px; 
    height: auto;
    margin-bottom: 10px;
}

.brand-name {
    font-family: 'Caveat', cursive; 
    font-size: 2.5rem;
    color: var(--social-icon-color);
    margin-top: 0;
}

.col-title {
    margin-top: 0;
    margin-bottom: 20px;
}

.links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-group li {
    margin-bottom: 8px;
    font-size: 1rem;
}

.links-group a {
    text-decoration: none;
    color: var(--link-color);
    transition: color 0.3s;
    font-family: Arial, sans-serif; 
}

.links-group a:hover {
    color: var(--social-icon-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a svg {
    fill: var(--social-icon-color); 
    width: 30px; 
    height: 30px;
    transition: fill 0.3s;
}

.social-icons a:hover svg {
    fill: #e9678e;
}
