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

:root{
    --color-emphase: #A0D1FC;
    --color-dark: #ee7cad;
    --color-light: #f7ede4;
    --color-shadow: #bdac99ea;
    --font-title:"Lobster", sans-serif;
    --font-body: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
  }
  

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
}

/* Navbar */
.navbar {
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;

    height: 60px;
    background-color: #f7f7f7;
    border-radius: 0px 0px 20px 20px;
    padding: 10px 20px;
    box-shadow: 0px 5px 5px var(--color-shadow);

    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100; 
}

.navbar h1 {
    font-family: var(--font-title);
    font-size: 30px;
    color: var(--color-dark);
    margin: 0; 
    text-shadow: #000000e3 1px 0px 1px;
}

.navbar .menu-mobile{
    height: 30px;
    width: 30px;
    display: none;
}

.navbar .menu-mobile img{
    height: 100%;
    width: 100%;
}

.navbar ul {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
} 
.navbar ul li {
    list-style: none;
    padding: 10px 20px;
}
.navbar ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

.navbar ul li a:hover {
    color: var(--color-dark);
    transition: 0.3s;
}

@media (max-width: 800px) {
    .navbar h1 {
        font-size: 25px;
    }
    .navbar ul {
        gap: 5px;
    }
    .navbar ul li a {
        font-size: 20px;
    }
}

@media (max-width: 750px) {
    .navbar h1 {
        font-size: 18px;
    }
    .navbar ul {
        gap: 5px;
    }
    .navbar ul li a {
        font-size: 18px;
    }
}

@media (max-width: 660px) {
    .navbar h1, 
    .navbar ul {
        display: none;
    }
    .navbar .menu-mobile {
        display: block;
        justify-content: center;
        cursor: pointer;
    }
}

/* Menu mobile */

.navbar.mobile-open {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
    transition: height 0.3s ease-in-out;
}


.navbar ul.mobile {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
}


.navbar.mobile-open ul.mobile {
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 100%;
    margin-top: 10px;
    animation: slideDown 0.3s ease forwards;
}


.navbar.mobile-open ul.mobile li {
    padding: 10px;
    text-align: center;
    width: auto;
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Section inicio */

#inicio {
    height: 100vh;
    background: linear-gradient(135deg, var(--color-emphase), var(--color-dark));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0px; 
    position: relative;
}


.container-inicio {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.container-inicio .logo-inicio{
    max-width: 600px;
    margin: 0 auto;
}

.container-inicio .logo-inicio img {
    max-width: 100%;
    height: auto;
}
.container-inicio .texto-inicio {
    background-color: #f7f7f7;
    max-width: 900px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 5px 5px var(--color-shadow);
}

.container-inicio .texto-inicio h2 {
    font-family: var(--font-title);
    font-size: 40px;
    color: var(--color-emphase);
    margin-bottom: 10px;
    text-shadow: #000000e3 1px 0px 1px;  
}

.container-inicio .texto-inicio p {
    font-size: 20px;
    padding: 5px;
    justify-content: justify;
}

.container-inicio .texto-inicio a{
    color: var(--color-dark);
}

.container-inicio .texto-inicio a:hover{
    color: var(--color-emphase);
    text-decoration: none;
    transition: 0.3s;
}

.container-inicio .arrow-down {
    transform: translateX(-50%);
    height: 40px;
    width: 40px;
    color: var(--color-dark);
    animation: bounce 1.5s infinite;
    margin: 25px auto;
}

.container-inicio .arrow-down img {
    height: 100%;
    width: 100%;
    
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .container-inicio .logo-inicio img {
        max-width: 100%;
    }
    .container-inicio .texto-inicio h2 {
        font-size: 30px;
    }
    .container-inicio .texto-inicio p {
        font-size: 18px;
    }
}

/* Sessão de produtos */


#sabores {
    min-height: 100vh;
    padding-top: 30px; /* opcional, se quiser mais espaço no topo */
    padding-bottom: 30px; /* importante para espaçamento com a próxima seção */
}

#sabores h2 {
    font-family: var(--font-title);
    font-size: 35px;
    color: var(--color-emphase);
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    text-shadow: #0f0f0f 1px 1px 3px;
}

.container-sabores {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 20px;

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card-sabores {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 2px 4px var(--color-shadow);
    text-align: center;
    padding: 15px;
    width: 200px;
    transition: transform 0.2s;
}
.card-sabores:hover {
    transform: scale(1.05);
    border: #A0D1FC 2px solid;
}

.card-sabores img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.card-sabores h3 {
    font-family: var(--font-body);
    font-size: 25px;
    margin-top: 10px;
}

.card-sabores h4 {
    font-size: 18px;
    color: var(--color-primary);
}

.sabores-aviso{
    max-width: 400px;
    height: 60px;
    background-color: var(--color-emphase);
    font-family: var(--font-body);
    color: white;
    font-size: 20px;
    text-align: center;
    margin: 0px auto;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0px 2px 4px var(--color-shadow);
}

.sabores-aviso:hover{
    transform: scale(1.10);
    transition: 0.3s;
}

.sabores-aviso p{
    margin: 0px;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    text-shadow: #0f0f0f 1px 1px 3px;
}

.texto-destaque {
    text-decoration: underline;
    font-style: italic;
}

@media (max-width: 450px) {
    .sabores-aviso{
        margin: 20px;
    }
}

/* Sessão Sobre nós */

#sobre {
    padding-bottom: 3rem;
}
#sobre h2{
    font-family: var(--font-title);
    font-size: 35px;
    color: var(--color-emphase);
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    text-shadow: #0f0f0f 1px 1px 3px;
}

.container-nos{
    width: 100%;
    background-color: var(--color-emphase);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


.container-nos .card-nos{
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 2px 4px var(--color-shadow);
    text-align: center;
    padding: 15px;
    width: 350px;
    transition: transform 0.2s;
}

.container-nos .card-nos h3{
    font-family: var(--font-body);
    font-size: 20px;
    margin: 10px 0px;
}

.container-nos .card-nos p{
    font-size: 18px;
    margin: 10px;
    justify-content: justify;
}

/* Sessão de contato */

#contato {
    background-color: var(--color-light);
    padding: 50px 20px;
    text-align: center;
}

#contato h2 {
    font-family: var(--font-title);
    font-size: 35px;
    color: var(--color-emphase);
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    text-shadow: #0f0f0f 1px 1px 3px;
}

.subtitulo-contato {
    font-size: 20px;
    margin-bottom: 40px;
    font-family: var(--font-body);
}

.container-contato {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card-contato {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 2px 4px var(--color-shadow);
    width: 280px;
    text-align: center;
    transition: transform 0.3s;
}

.card-contato:hover {
    transform: scale(1.05);
    border: 2px solid var(--color-emphase);
}

.card-contato img {
    width: 60px;
    margin-bottom: 15px;
}

.card-contato h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card-contato p {
    font-size: 20px;
    margin-bottom: 15px;
    
}

.btn-contato {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--color-emphase);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-shadow: #000000e3 1px 0px 2px;
    box-shadow: var(--color-shadow) 1px 2px 1px;
}

.btn-contato:hover {
    background-color: var(--color-emphase);
}

footer {
    background-color: black; 
    color: white;
    text-align: center;
    padding: 20px;
    font-family: var(--font-body);
    font-size: 14px;
  }
  
  footer strong {
    color: var(--color-emphase);
  }



