* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.navbar {
    background-color: #fdfeff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #000;
    position: relative;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    width: 100%;
}

.navbar .logo {
    height: 90px;
}

.logo-container {
    padding-left: 40px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-right: 0;
}

.nav-links a {
    color: #041757;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-links a:hover {
    text-decoration: underline;
}

.nav-flags {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 1.5rem;
}

.nav-flags .flag {
    width: 24px;
    height: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-flags .flag:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #041757;
}

.fundo {
    width: 100%;
}

.fundo img {
    width: 100%;
    height: auto;
    display: block;
}

.diferencial-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 5rem 3rem;
    background: linear-gradient(to right, #002b5c, #7A96C9);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 -5px 15px rgba(0, 0, 0, 0.4);
}

.diferencial-section h1 {
    flex-basis: 100%;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.diferencial {
    flex: 1;
    min-width: 200px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    border-right: 1px solid #ffffff;
}

.diferencial-section.visible .diferencial {
    opacity: 1;
    transform: translateY(0);
}

.diferencial-section.visible .diferencial:nth-of-type(1) {
    transition-delay: 0.3s;
}

.diferencial-section.visible .diferencial:nth-of-type(2) {
    transition-delay: 0.4s;
}

.diferencial-section.visible .diferencial:nth-of-type(3) {
    transition-delay: 0.5s;
    border-right: none;
}

.diferencial h2 {
    font-size: 2rem;
    color: #ffffff;
}

.diferencial p {
    font-size: 1rem;
    color: #ffffff;
}

.ingredients-section {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    padding-left: 100px;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
}

.ingredients-text {
    flex: 1;
    max-width: 600px;
}

.ingredients-text strong {
    color: #6d6d6d;
}

.ingredients-text h1 {
    font-size: 2.0rem;
    color: #00244d;
    margin-bottom: 1rem;
}

.ingredients-text p {
    margin-bottom: 1rem;
    color: #888888;
    text-align: justify;
    font-size: 1.5rem;
}

.ingredients-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.ingredients-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


.footer {
    background-color: #fdfeff;
    color: #041757;
    padding: 2rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.30);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.footer-logo-img {
    width: 200px;
    height: auto;
}

.footer-subtitle {
    color: #727272;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.footer-menu {
    border-right: 2px solid #525666;
    padding-right: 2rem;
    text-align: right;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.25rem;
    text-align: right;
}

.footer-menu a {
    text-decoration: none;
    color: #041757;
    font-size: 1.4rem;
    font-weight: 500;
}

.footer-menu a:hover {
    color: #002b5c;
    text-decoration: underline;
}

.footer-contact {
    text-align: left;
}

.footer-contact h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #041757;
    font-size: 1.6rem;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
    font-size: 1.4rem;
}

.footer-contact i {
    font-size: 1.4rem;
    color: #5C7DF0;
}

.footer-contact a {
    color: #2c2c2c;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #002b5c;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .ingredients-text p {
        font-size: 1.3rem;
    }

    .diferencial-section,
    .ingredients-section {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (max-width: 1024px) {
    .nav-links a {
        font-size: 1.3rem;
    }

    .diferencial-section,
    .ingredients-section {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .diferencial-items-wrapper img {
        width: 180px;
        height: 180px;
    }

    .conhecimento-mercado img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block !important;
        z-index: 1002;
    }

    .navbar-container {
        padding: 1rem 1rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 1.5rem 0;
        border-bottom: 2px solid #000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
        animation: dropdown 0.25s ease-out;
    }

    @keyframes dropdown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-right: 0;
        padding: 0;
        text-decoration: none;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .nav-links a {
        font-size: 1.4rem;
    }

    .nav-flags {
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
        margin-left: 0;
    }

    .diferencial-section {
        padding: 3rem 2rem;
    }

    .diferencial-section h1 {
        text-align: center;
        max-width: 100%;
    }

    .diferencial-items-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        margin: 0;
    }

    .diferencial-items-wrapper>div {
        margin: 1rem;
    }

    .ingredients-section {
        flex-direction: column-reverse;
        padding: 3rem 2rem;
        padding-left: 2rem;
        gap: 30px;
    }

    .ingredients-text {
        max-width: 100%;
        text-align: center;
    }

    .ingredients-text h1 {
        text-align: center;
    }

    .ingredients-text p {
        text-align: justify;
    }

    .ingredients-img {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .ingredients-img img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-menu {
        border: none;
        padding: 0;
        text-align: center;
    }

    .footer-menu ul {
        padding: 0;
        margin: 0 auto;
        width: fit-content;
    }

    .footer-menu li {
        text-align: center;
        margin: 0 auto;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
        color: #2c2c2c;
        font-size: 1.4rem;
    }

    .diferencial-section h1,
    .ingredients-text h1 {
        font-size: 2rem;
    }

    .ingredients-text p {
        font-size: 1.1rem;
    }

    .diferencial-items-wrapper img {
        width: 150px;
        height: 150px;
    }

    .conhecimento-mercado img {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 600px) {
    .navbar .logo {
        height: 70px;
    }

    .navbar-container {
        padding: 0.5rem 1rem;
    }

    .diferencial-section,
    .ingredients-section {
        padding: 2rem 1rem;
    }

    .ingredients-img img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .navbar .logo {
        height: 55px;
    }

    .diferencial-section h1,
    .ingredients-text h1 {
        font-size: 1.5rem;
    }

    .ingredients-text p {
        font-size: 1rem;
    }

    .diferencial-items-wrapper img {
        width: 120px;
        height: 120px;
    }

    .conhecimento-mercado img {
        width: 140px;
        height: 140px;
    }

    .footer-logo-img {
        width: 140px;
    }
}

@media (max-width: 768px) {

    .diferencial-section {
        padding: 2rem 1rem !important;
        gap: 2rem;
    }

    .diferencial {
        min-width: 100%;
        flex-basis: 100%;
        margin: 0.5rem 0;
        border-right: none;
    }

    .diferencial-section.visible .diferencial:nth-of-type(4) {
        border-right: none;
    }

    .diferencial h2 {
        font-size: 1.6rem;
    }
}