/**
*  RESPONSIVE BREAKPOINTS:
*    
*    SMARTPHONE - MAX WIDTH 575px
*    TABLET - MIN WIDTH 576px
*    DESKTOP - MIN WIDTH 992px
*    DESKTOP XL - MIN WIDTH 1200px
*/

/* Base */

:root {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 13px;
    /* -webkit-font-smoothing: antialiased; */
    font-weight: 400;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media (min-width: 576px) {
    :root {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    :root {
        font-size: 15px;
    }
}

@media (min-width: 1200px) {
    :root {
        font-size: 16px;
    }
}

body {
    background-color: #F8F6EA;
    margin: 0;
}

a {
    color: #FAB61C;
    text-decoration: none;
}

h1, h2, h3, h4, h5 {
    color: #330602;
    margin: 0;
}

h1 {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 2rem;
}

h2, h3 {
    font-family: 'Poppins SemiBold', sans-serif;

}

h2 {
    font-size: 1.4em;
}

h4, h5 {
    font-family: 'Poppins Medium', sans-serif;
    font-weight: 500;
}

h3, h4, h5 {
    font-size: 1rem;
}

p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1rem;
    margin: 0;
}

.container {
    margin: auto;
}

.container.default {
    max-width: 1140px;
}

.container.large {
    max-width: 1240px;
}

.padding-default {
    padding: 1rem;
}

@media (min-width: 576px) {
    .padding-default {
        padding: 1rem 2rem;
    }
}

.padding-large {
    padding: 2rem;
}

button {
    -webkit-appearance: none; /* rimuove stile iOS di default */
    -webkit-tap-highlight-color: transparent; /* rimuove evidenziazione */
    color: #330602;
}

button.btn-call-to-action {
    background: linear-gradient(to bottom, rgba(250, 182, 28, .5) 0%, rgba(250, 182, 28, 1) 70%);
    border: unset;
    border-radius: 2rem;
    display: flex;
    align-items: start;
    justify-content: center;
    padding: .8rem 1rem;
    gap: .5rem;
    box-shadow: 0 4px 15px 0 rgba(250, 182, 28, 0.7);
    cursor: pointer;
}

@media (min-width: 576px) {
    button.btn-call-to-action {
        gap: .75rem;
        padding: .8rem 1.25rem;
    }
}

button .btn-text {
    font-family: 'Poppins SemiBold', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    white-space: nowrap;
}

button .btn-icons-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

button .btn-icons-wrapper .btn-icon {
    max-height: 1.2rem;
    color: #330602;
}

button.btn-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: unset;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
}

button.btn-flex .btn-flex-icon {
    height: 2.5rem;
}

button.btn-flex .btn-flex-text-wrapper {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

button.btn-flex .btn-flex-text-wrapper .btn-flex-text-title {
    font-weight: 500;
    font-family: 'Poppins SemiBold', sans-serif;
    font-size: 1rem;
}

button.btn-flex .btn-flex-text-wrapper .btn-flex-text-description {
    font-size: 1rem;
}

button.btn-blur {
    background: rgba(255, 236, 217, 0.7);
    padding: .6rem 2rem;
    border-radius: 1.6rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

button.btn-white {
    background: #F8F6EA;
    padding: .6rem 1.6rem;
    border-radius: 2rem;
    cursor: pointer;
}

button.btn-white .btn-white-icon{
    height: 2rem;
    color: #330602;
}

.card {
    border-radius: 1rem;
    padding: .5rem;
    box-shadow:0 4px 15px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
}

.bg-orange {
    background: linear-gradient(to bottom, rgba(250, 182, 28, .5) 0%, rgba(250, 182, 28, 1) 70%);
    box-shadow: 0 4px 15px 0 rgba(250, 182, 28, 0.7);
}

.text-lg {
    font-size: 1.1rem;
    line-height: 1.8rem;
}

.text-primary {
    color: #FAB61C;
    background: linear-gradient(to bottom, rgba(250, 182, 28, .5) 0%, rgba(250, 182, 28, 1) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-bold {
    font-family: 'Poppins Bold', sans-serif;
}

.font-semibold {
    font-family: 'Poppins SemiBold', sans-serif;
}

.section {
    background-position: top;
    background-size: 120rem;
}

.section .section-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.section .section-gradient {
    background: linear-gradient(to bottom,
    transparent 96%,
    #F8F6EA 100%);
}

.section .section-gradient-reverse {
    background: linear-gradient(to top,
    transparent 90%,
    #F8F6EA 100%);
}

@media (min-width: 1200px) {
    .section .section-gradient-reverse {
        background: linear-gradient(to top,
        transparent 80%,
        #F8F6EA 100%);
    }
}

.section .section-wrapper .section-text {
    text-align: center;
}

.w-1 {
    max-width: 18rem;
}

.w-2 {
    max-width: 21rem;
}

.w-3 {
    max-width: 24rem;
}

.w-4 {
    max-width: 27rem;
}

/* Navigation Navbar */

header.navbar {
    width: 100%;
    background: #F8F6EA;
}

@media (min-width: 992px) {
    header.navbar {
        justify-content: center;
    }
}

header.navbar .navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 1000;
    position: relative;
}

@media (min-width: 576px) {
    header.navbar .navbar-wrapper {
        gap: 3rem;
    }
}

header.navbar .logo-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

header.navbar .logo-wrapper .logo {
    height: 2.75rem;
}

@media (min-width: 576px) {
    header.navbar .logo-wrapper .logo {
        height: 3.5rem;
    }
}

header.navbar .logo-wrapper .mobile-menu {
    height: 2.5rem;
    cursor: pointer;
}

@media (min-width: 992px) {
    header.navbar .logo-wrapper .mobile-menu {
        display: none;
    }
}


header.navbar .navigation-menu {
    display: none;
}

@media (min-width: 992px) {
    header.navbar .navigation-menu {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 1.5rem;
        flex-grow: 1;
        white-space: nowrap;
    }
}

header.navbar .navigation-menu .navigation-link {
    cursor: pointer;
}

header.navbar .navigation-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

header.navbar .navigation-actions .partner {
    white-space: nowrap;
    display: none;
}

@media (min-width: 992px) {
    header.navbar .navigation-actions .partner {
        display: flex;
        align-items: center;
        gap: .75rem;
        cursor: pointer;
    }
}

header.navbar .navigation-actions .partner .partner-icon {
    max-height: 1.2rem;
}

/* Hero Section */
.hero-section {
    background-image: url("../images/world-map-vertical.webp");
    background-position: calc(50% + 1rem) center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 2rem;
}

@media (min-width: 576px) {
    .hero-section {
        background-image: url("../images/world-map.webp");
        background-position: center calc(50% - 2rem);
    }
}

@media (min-width: 992px) {
    .hero-section {
        flex-direction: row;
        background-position: center;
        height: 36rem;
    }
}

.hero-section .hero-description {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 992px) {
    .hero-section .hero-description {
        align-items: start;
    }
}

.hero-section .hero-description .hero-text {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-section .hero-description .hero-text {
        text-align: start;
        max-width: 30rem;
    }
}

.hero-section .hero-description .logo-extended {
    height: 7rem;
}

.hero-section .hero-call-to-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.hero-section .hero-call-to-action .hero-call-to-action-text {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-section .hero-call-to-action .hero-call-to-action-text {
        text-align: start;
    }
}

.hero-section .hero-call-to-action .hero-call-to-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-section .hero-call-to-action .hero-call-to-action-buttons .download-button {
    height: 3.6rem;
    cursor: pointer;
}

.hero-section .hero-image {
    height: 32rem;
}

/* Info Section */

.info-section-bg {
    background-image: url("../images/background/background-food-pink.webp");
}

/* Info Section: Description */

.app-lattozero-description {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: column;
 }

@media (min-width: 992px) {
    .app-lattozero-description {
        flex-direction: row;
    }
}

.app-lattozero-description .description-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.app-lattozero-description .description-list .description-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    width: 100%;
}

@media (min-width: 992px) {
    .app-lattozero-description .description-list .description-item {
        text-align: right;
    }
}

.app-lattozero-description .description-list .description-item.reversed {
    text-align: left;
}

.app-lattozero-description .description-list .description-item .description-item-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    text-align: left;
    flex-direction: row-reverse;
    justify-content: start;
}

@media (min-width: 992px) {
    .app-lattozero-description .description-list .description-item .description-item-header {
        text-align: right;
        flex-direction: row;
    }
}

.app-lattozero-description .description-list .description-item .description-item-header.reversed {
    flex-direction: row-reverse;
    text-align: left;
}

.app-lattozero-description .description-list .description-item .description-item-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-lattozero-description .description-list .description-item .description-item-icon {
    height: 2rem;
}

@media (min-width: 992px) {
    .app-lattozero-description .description-list .description-item .description-item-icon {
        height: 2.5rem;
    }
}

.app-lattozero-description .app-lattozero-description-image-wrapper {
    position: relative;
}

.app-lattozero-description .app-lattozero-description-image-wrapper .app-lattozero-description-image {
    height: 28rem;
}

@media (min-width: 992px) {
    .app-lattozero-description .app-lattozero-description-image-wrapper .app-lattozero-description-image {
        height: 32rem;
    }
}

.app-lattozero-description .follow-lattozero-button {
    position: absolute;
    right: 0;
    bottom: -.5rem;
}

/* Info Section: Reviews */
.app-lattozero-reviews {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    flex-direction: column;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .app-lattozero-reviews {
        flex-direction: row;
    }
}

.app-lattozero-reviews .review-item {
    padding: .5rem 1rem .75rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

.app-lattozero-reviews .review-items-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    width: 100%;
}

.app-lattozero-reviews .review-item .review-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-lattozero-reviews .review-item .review-item-header .review-item-icon {
    height: 2.5rem;
}

.app-lattozero-reviews .review-item .review-item-header .stars-item-icon {
    height: 1.25rem;
}

/* Biography Section */

.biography-section {
    background: #FFECD9;
}

.biography-section-bg {
    background-image: url("../images/background/background-food-cream.webp");
}

.biography-section-wrapper {
    padding-top: 4rem;
}

.biography-section .biography-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .biography-section .biography-content {
        flex-direction: row;
        gap: 4rem;
    }
}

.biography-section .biography-image {
    height: 28rem;
}

@media (min-width: 992px) {
    .biography-section .biography-image {
        height: 32rem;
    }
}

.biography-section .biography-image-wrapper {
    position: relative;
}

.biography-section .biography-image-wrapper .biography-lattosioinpillole {
    position: absolute;
    top: 2rem;
    left: 0;
}

@media (min-width: 576px) {
    .biography-section .biography-image-wrapper .biography-lattosioinpillole {
        position: absolute;
        top: 6rem;
        left: -2rem;
    }
}

.biography-section .biography-image-wrapper .biography-lattosioinpillole-bubbles {
    height: 13rem;
    margin-bottom: .5rem;
}

@media (min-width: 576px) {
    .biography-section .biography-image-wrapper .biography-lattosioinpillole-bubbles {
        height: 15rem;
    }
}

.biography-section .biography-image-wrapper .biography-social-buttons {
    display: flex;
    gap: .7rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 1rem;
    right: 0;
}

@media (min-width: 576px) {
    .biography-section .biography-image-wrapper .biography-social-buttons {
        bottom: 4.5rem;
        right: -6rem;
        flex-direction: column;
    }
}

@media (min-width: 576px) {
    .biography-section .biography-image-wrapper .biography-social-buttons .follow-lattosioinpillole-tiktok {
        margin-right: 3rem;
    }
}

.biography-section .biography-content .biography-chat-wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 1.2rem;
}

.biography-section .biography-content .biography-chat-message-wrapper {
    display: flex;
}

.biography-section .biography-content .biography-chat-message-wrapper .biography-chat-message {
    padding: .75rem 1rem;
    border-radius: 1.5rem 1.5rem 0;
    background: rgba(248, 246, 234, 0.7);
}

.biography-section .biography-content .biography-chat-message-wrapper .biography-heart {
    height: 1.3rem;
}

.biography-section .biography-partnership {
    position: relative;
    padding-bottom: 4rem;
}

.biography-section .biography-partnership .partnership-title {
    font-size: 1.1rem;
    padding: 0 2rem 1rem;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    background: white;
    white-space: nowrap;
    position: relative;
    padding: .75rem 0;
    background: rgba(248, 246, 234, 0.7);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
}

.logos-slide {
    display: inline-block;
    animation: 20s slide infinite linear;
}

.logos-slide img {
    height: 40px;
    margin: 0 30px;
    vertical-align: middle;
}

.logos-slide img.small {
    height: 30px;
}


@media (min-width: 992px) {
    .logos-slide img {
        height: 50px;
        margin: 0 40px;
    }
}

@media (min-width: 992px) {
    .logos-slide img.small {
        height: 40px;
    }
}

/* Footer */

footer {
    background: rgba(51, 6, 2, 70%);
    color: #F8F6EA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}