/* Reset e base */

:root {
    /* CSS HEX */
    --primary: #F3EAFB;
    --secondary: #7C6BA5;
    --third: #2c2443;
    --four: #A984FF;
    --five: #4A3B70;
    --white: #fff;
    --six: #8B6EDA;
    --seven: #3E3265;
    --white_due: #E6DAF8;
    --eight: #5F4E91;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0 !important;
    background-color: var(--secondary);
    color: var(--primary);
    font-family: 'Chakra Petch', sans-serif;
    padding-top: 70px;
}

/* HEADER */
header.cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--third);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    padding: 0 20px;
}

.cover__logo img {
    width: 120px;
    height: auto;
    margin-top: 10px;
}

.cover__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.cover__menu ul li a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.cover__menu ul li a:hover {
    text-decoration: underline;
    font-size: 1.1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    border-radius: 2px;
}

/* Animazione hamburger */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--third);
    z-index: 999;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-100%);
}

.mobile-menu.open {
    display: flex;
    transform: translateX(0);
}

.mobile-menu ul {
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu ul li {
    margin: 40px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.mobile-menu.open ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu.open ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-menu.open ul li:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu ul li a {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--four);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-menu ul li a:hover {
    color: var(--four);
    transform: scale(1.05);
}

.mobile-menu ul li a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    background-color: var(--five);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    padding: 40px 0;
    text-align: center;
    flex-direction: column;
}

.hero__quote {
    font-size: 1.8rem;
    font-style: italic;
    max-width: 700px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--white_due);
    margin-top: 90px;
}

.hero__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero__content img {
    width: 400px;
    height: auto;
}

.firma {
    margin-bottom: 2px;
    filter: brightness(0) invert(1);
    max-width: 600px;
}

.button__secondary,
.button__third {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.button__secondary {
    background-color: var(--seven);
    color: var(--white);
}

.button__secondary:hover {
    background-color: var(--white);
    color: var(--six);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(169, 132, 255, 0.3);
}

.button__third {
    background-color: transparent;
    border: 3px solid var(--seven);
    color: var(--seven);
}

.button__third:hover {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* CARDS */
.cards__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cards__section h2 {
    text-align: center;
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 30px;
    margin-top: 90px;
}

.cosmic-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: var(--eight);
    border-radius: 20px;
    padding: 30px 25px;
    width: 260px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
    color: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgb(0 0 0 / 0.25);
}

.card h3 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.card h4 {
    font-family: "Merriweather";
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #D4C6F0;
    text-align: center;
}

.card p {
    font-family: "Merriweather";
    font-size: 17px;
    line-height: 1.4;
    text-align: center;
}

/* LIBRO */
.content__shop {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--primary);
}

#titolo_paragrafo {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

.content__section2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.content__main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.content__cover {
    background-color: transparent;
    flex: 1 1 320px;
    max-width: 320px;
    overflow: visible;
}

.content__cover img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.content__cover img:hover {
    transform: scale(1.05);
}

.container_h2p {
    flex: 2 1 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0px;
    padding: 0 20px;
    color: var(--white_due);
}

.leading {
    font-family: 'Merriweather';
    font-size: 25px;
    line-height: 1.5;
    font-style: italic;
}

.sottoparagrafo {
    font-family: 'Merriweather';
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    color: #D4C6F0;
}

.button__shop {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Section autore */
.content-autore {
    background-color: var(--seven);
    padding: 60px 20px;
    max-width: 900px;
    margin: 60px auto 80px;
    border-radius: 25px;
    color: var(--primary);
    text-align: center;
}

.autore-title {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--four);
}

.imgp__autore {
    margin-bottom: 30px;
}

.autore-img {
    width: 220px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.35);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.autore-img:hover {
    transform: scale(1.05);
}

.calvin__par {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: normal;
    margin-bottom: 30px;
    color: var(--white_due);
}

.autore-btn {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.autore-btn:hover {
    background-color: var(--white);
    color: var(--seven);
    border: 2px solid var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* CAROSELLO */
.carousel-css-container {
    max-width: 1200px;
    margin: 100px auto;
    text-align: center;
    padding: 40px 20px;
}

#carosello {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

.carousel-css {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-css::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 25%;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
footer {
    background-color: var(--third);
    color: var(--primary);
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    gap: 30px;
}

.footer-section {
    flex: 1 1 280px;
}

.footer-section.left {
    max-width: 400px;
}

.newsletter__container h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--four);
}

.newsletter__container p {
    font-family: 'Merriweather';
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--white_due);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-label {
    font-family: 'Merriweather';
    font-size: 0.9rem;
    color: var(--white_due);
    display: flex;
    gap: 8px;
}

.privacy-checkbox {
    accent-color: var(--four);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.input-field {
    padding: 10px 15px;
    border-radius: 25px;
    border: none;
    font-size: 1rem;
    outline: none;
    font-family: 'Merriweather';
    transition: box-shadow 0.3s ease;
}

.input-field:focus {
    box-shadow: 0 0 10px rgba(169, 132, 255, 0.3);
}

.submit-btn {
    background-color: var(--four);
    color: var(--third);
    border: none;
    font-weight: 700;
    padding: 12px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--six);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(169, 132, 255, 0.3);
}

.footer-section ul {
    text-align: center;
    list-style: none;
    padding: 25px;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: var(--four);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    text-decoration: underline;
    color: var(--white);
}

.logo__footer {
    max-height: 130px;
    margin-bottom: -40px;
    display: block;
}

footer img[alt="firma footer"] {
    max-width: 300px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
}

.footer-line {
    border: none;
    border-top: 1px solid var(--primary);
    margin: 0 auto 20px;
    width: 90%;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #D4C6F0;
    font-size: 0.9rem;
    text-align: center;
}

.underline-animate {
    position: relative;
}

.underline-animate::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.underline-animate:hover::after {
    transform: scaleX(1);
}

/* MEDIA QUERIES */
@media (min-width: 768px) {
    .hero__quote {
        font-size: 1.6rem;
    }

    .cosmic-cards {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .card {
        width: 45%;
        margin: 10px;
    }

    .content__main {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .content__cover,
    .container_h2p {
        width: 48%;
    }

    .footer-container {
        justify-content: space-between;
        flex-direction: row;
        display: flex;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    header.cover {
        height: 60px;
        padding: 0 15px;
    }

    .cover__logo img {
        height: 100px;
    }

    .menu-toggle {
        display: flex;
    }

    #nav-links {
        display: none;
    }

    .mobile-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .hero {
        min-height: 300px;
        padding: 30px 0;
    }

    .hero__quote {
        font-size: 1.4rem;
        padding: 0 15px;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .button__secondary,
    .button__third {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .cards__section h2,
    #titolo_paragrafo,
    #carosello,
    .autore-title {
        font-size: 2rem;
    }

    .cosmic-cards {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
    }

    .card {
        width: 90%;
        max-width: 300px;
    }

    .content__main {
        flex-direction: column;
        align-items: center;
    }

    .content__cover,
    .container_h2p {
        width: 100%;
        padding: 0 15px;
    }

    .leading {
        font-size: 1.1rem;
    }

    .sottoparagrafo {
        font-size: 1rem;
    }

    .content-autore {
        margin: 40px 15px 60px;
        padding: 40px 20px;
    }

    .autore-img {
        width: 180px;
    }

    .calvin__par {
        font-size: 1rem;
    }

    .carousel-card {
        flex: 0 0 80%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-info {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 350px) {
    body {
        padding-top: 55px;
    }

    header.cover {
        height: 55px;
        padding: 0 10px;
    }

    .cover__logo img {
        width: 90px;
        height: auto;
        margin-top: 8px;
    }

    .mobile-menu {
        top: 55px;
        height: calc(100vh - 55px);
        padding-top: 60px;
    }

    .mobile-menu ul li a {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 250px;
        padding: 20px 0;
    }

    .hero__quote {
        font-size: 1.1rem;
        padding: 0 10px;
        margin-top: 70px;
        line-height: 1.3;
    }

    .hero__content img {
        width: 280px;
        max-width: 90%;
    }

    .cards__section {
        padding: 0 10px;
    }

    .cards__section h2,
    #titolo_paragrafo,
    #carosello,
    .autore-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
        margin-top: 60px;
    }

    .cosmic-cards {
        padding: 15px 5px;
        gap: 15px;
    }

    .card {
        width: 95%;
        max-width: 280px;
        padding: 20px 15px;
    }

    .card h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 14px;
    }

    .content__shop {
        padding: 30px 10px;
    }

    .content__main {
        gap: 20px;
    }

    .content__cover,
    .container_h2p {
        padding: 0 10px;
    }

    .content__cover {
        max-width: 280px;
    }

    .leading {
        font-size: 1rem;
        line-height: 1.4;
    }

    .sottoparagrafo {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .button__shop {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
    }

    .button__secondary,
    .button__third {
        padding: 8px 20px;
        font-size: 0.8rem;
        width: 90%;
        max-width: 220px;
        text-align: center;
    }

    .button__third {
        padding: 6px 35px;
        width: 95%;
        max-width: 280px;
    }

    .content-autore {
        margin: 30px 10px 50px;
        padding: 30px 15px;
        border-radius: 20px;
    }

    .autore-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .autore-img {
        width: 150px;
    }

    .calvin__par {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .autore-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .carousel-css-container {
        margin: 60px auto;
        padding: 30px 10px;
    }

    .carousel-css {
        padding: 15px 5px;
        gap: 0.8rem;
    }

    .carousel-card {
        flex: 0 0 85%;
        max-width: 250px;
    }

    footer {
        padding: 30px 10px;
    }

    .footer-container {
        gap: 15px;
    }

    .footer-section.left {
        max-width: 100%;
        padding: 0 5px;
    }

    .newsletter__container h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .newsletter__container p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .newsletter-form {
        gap: 10px;
    }

    .privacy-label {
        font-size: 0.8rem;
        line-height: 1.3;
        gap: 6px;
    }

    .privacy-checkbox {
        width: 14px;
        height: 14px;
    }

    .input-field {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    .footer-section ul {
        padding: 15px;
    }

    .footer-section ul li {
        margin-bottom: 12px;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .logo__footer {
        max-height: 100px;
        margin-bottom: -30px;
    }

    footer img[alt="firma footer"] {
        max-width: 220px;
    }

    .footer-info {
        gap: 15px;
        font-size: 0.8rem;
    }

    .footer-info p {
        margin: 0;
    }
}

/* Media Query fatta per la visualizzazione sul telefono */
@media (max-width: 430px) and (min-width: 360px) {
    body {
        padding-top: 65px;
    }

    header.cover {
        height: 65px;
        padding: 0 12px;
    }

    .cover__logo img {
        width: 100px;
        height: auto;
        margin-top: 8px;
    }

    .menu-toggle {
        display: flex;
        width: 28px;
        height: 28px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    #nav-links {
        display: none;
    }

    .mobile-menu {
        top: 65px;
        height: calc(100vh - 65px);
        padding-top: 70px;
    }

    .mobile-menu ul li a {
        font-size: 1.8rem;
    }

    /* HERO */
    .hero {
        min-height: 280px;
        padding: 25px 0;
    }

    .hero__quote {
        font-size: 1.3rem;
        padding: 0 12px;
        margin-top: 75px;
        line-height: 1.35;
        max-width: 90%;
    }

    .hero__content img {
        width: 320px;
        max-width: 85%;
    }

    /* CARDS */
    .cards__section {
        padding: 0 12px;
    }

    .cards__section h2,
    #titolo_paragrafo,
    #carosello,
    .autore-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        margin-top: 70px;
    }

    .cosmic-cards {
        padding: 18px 8px;
        gap: 18px;
    }

    .card {
        width: 92%;
        max-width: 290px;
        padding: 22px 18px;
    }

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

    .card h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .card p {
        font-size: 15px;
        line-height: 1.35;
    }

    /* LIBRO */
    .content__shop {
        padding: 35px 12px;
    }

    .content__main {
        gap: 22px;
    }

    .content__cover,
    .container_h2p {
        padding: 0 12px;
    }

    .content__cover {
        max-width: 300px;
    }

    .leading {
        font-size: 1.05rem;
        line-height: 1.45;
    }

    .sottoparagrafo {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .button__shop {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 18px;
    }

    .button__secondary,
    .button__third {
        padding: 9px 22px;
        font-size: 0.85rem;
        width: 88%;
        max-width: 240px;
        text-align: center;
    }

    .button__third {
        padding: 7px 30px;
        width: 92%;
        max-width: 260px;
    }

    /* AUTORE */
    .content-autore {
        margin: 35px 12px 55px;
        padding: 35px 18px;
        border-radius: 22px;
    }

    .autore-title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }

    .autore-img {
        width: 165px;
    }

    .calvin__par {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .autore-btn {
        padding: 11px 27px;
        font-size: 0.95rem;
    }

    /* CAROSELLO */
    .carousel-css-container {
        margin: 70px auto;
        padding: 32px 12px;
    }

    .carousel-css {
        padding: 16px 6px;
        gap: 0.9rem;
    }

    .carousel-card {
        flex: 0 0 82%;
        max-width: 270px;
    }

    /* FOOTER */
    footer {
        padding: 32px 12px;
    }

    .footer-container {
        gap: 16px;
    }

    .footer-section.left {
        max-width: 100%;
        padding: 0 8px;
    }

    .newsletter__container h2 {
        font-size: 1.3rem;
        margin-bottom: 13px;
    }

    .newsletter__container p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .newsletter-form {
        gap: 11px;
    }

    .privacy-label {
        font-size: 0.85rem;
        line-height: 1.35;
        gap: 7px;
    }

    .privacy-checkbox {
        width: 15px;
        height: 15px;
    }

    .input-field {
        padding: 9px 13px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 11px;
        font-size: 0.95rem;
    }

    .footer-section ul {
        padding: 18px;
    }

    .footer-section ul li {
        margin-bottom: 13px;
    }

    .footer-section ul li a {
        font-size: 0.95rem;
    }

    .logo__footer {
        max-height: 110px;
        margin-bottom: -32px;
    }

    footer img[alt="firma footer"] {
        max-width: 250px;
    }

    .footer-info {
        gap: 18px;
        font-size: 0.85rem;
    }

    .footer-info p {
        margin: 0;
    }
}