@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Staatliches&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --font-principal: "Staatliches", sans-serif;
    --font-realce: "DM Sans", sans-serif;
    --roxo-principal: #4b2e83;
    --roxo-destaque: #b678ff;
    --roxo-evidente: #9d00ff;
    --branco: #ffffff;
    --texto: #443e2f;
}

body {
    margin: 0;
    position: relative;
    height: 100%;
}
 
img{
    pointer-events: none
}

html {
    scroll-behavior: smooth;
}

/* Cabeçalho */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--roxo-principal);
    transition: box-shadow 0.3s ease;
    max-width: 100vw;
    z-index: 10;
    /* normal */
}



.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 2000;
}

.menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.4s ease;
}

.header.scrolled {
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


.logo span {
    font-family: var(--font-principal);
    font-size: 30px;
    color: var(--branco);
}

.nav a {
    margin-left: 40px;
    text-decoration: none;
    font-family: var(--font-principal);
    color: var(--branco);
    letter-spacing: 1px;
    transition: color 0.3s;
    margin-left: 40px;
    font-size: 23px;
    margin-left: 0;
    /* Reseta a margem anterior se necessário */
    text-decoration: none;
}



.btn-contato {
    padding: 10px 20px;
    border: 2px solid var(--roxo-destaque);
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.nav a.btn-contato:hover {
    background-color: var(--roxo-destaque);
    color: purple;
    /* roxo escuro real */
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a:hover {
    color: var(--roxo-destaque);
}

/*Menu MOBILE*/

@media (max-width: 768px) {
    .btn-contato {
        border: none;
    }

    .header {
        justify-content: space-between;
        /* 🔥 aqui */
        padding: 16px 20px;
        /* padding menor no mobile */
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--roxo-principal);
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav a {
        margin: 20px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav.active {
        display: flex;
    }
}

/*Animação menu*/

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

.menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--roxo-principal);

        display: flex;
        flex-direction: column;
        align-items: center;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);

        transition: all 0.4s ease;
    }

    .nav a {
        margin: 20px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav.active {
        max-height: 300px;
        /* suficiente pros links */
        opacity: 1;
        transform: translateY(0);
    }
}

/*///////////////////////////////////////*/


.hero {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: var(--roxo-principal);
    /* roxo escuro */
}

.hero-text {
    width: 50%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-principal);
    font-weight: 400;
    font-style: normal;
}

.subtitle {
    color: var(--roxo-destaque);
    letter-spacing: 2px;
    font-size: 18px;
    font-family: var(--font-principal);


}

.hero-text h1 {
    color: var(--branco);
    font-size: 56px;
    line-height: 1.2;
    margin-top: 0;
    font-weight: 400;
    /* NÃO pode ser 800 */
}

.hero-text h1 {
    font-weight: 400;
    /* remove o falso negrito */
}

.destaque {
    color: var(--roxo-destaque);
}


.hero-image {
    width: 50%;
    height: 100vh;
    /* ocupa toda a altura */
    position: relative;
    overflow: hidden;
}

.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-promo {
    display: none;
}

.btn-agende {
    display: inline-block;
    background-color: var(--roxo-evidente);
    color: var(--branco);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    width: 45%;
    font-family: var(--font-realce);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(157, 0, 255, 0.4);
    transition: transform 0.2s;
    animation: scalePulse 1.5s infinite ease-in-out;
}

@keyframes scalePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.btn-agende:active {
    transform: scale(0.95);
    /* Efeito de clique no celular */
}

/*Hero Mobile*/
@media (max-width: 768px) {
    .hero {
        display: none;
    }

    .card-promo {
        position: relative;
        width: 100%;
        height: 85vh;
        /* Ocupa a altura toda da tela do celular */

        /* Substitua 'sua-foto.jpg' pelo link da sua imagem */
        background: url('../img/mobile.svg') no-repeat center center;
        background-size: cover;

        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        /* Empurra o texto para a parte de baixo */
        align-items: center;
        padding-bottom: 50px;
        text-align: center;
    }

    .content {
        width: 90%;
    }

    .subtitle {
        color: var(--roxo-evidente);
        font-size: 1em;
        letter-spacing: 1px;
        font-family: var(--font-principal);
        text-shadow: 2px 2px 10px rgba(255, 181, 244, 0.447);
    }

    .main-title {
        color: var(--branco);
        font-family: var(--font-principal);
        font-size: 2.8rem;
        line-height: 1.1;
        font-weight: 400;
        margin-bottom: 30px;
        margin: 0;
        text-shadow: 2px 2px 10px rgba(255, 181, 244, 0.447);
    }

    .purple-text {
        color: var(--roxo-evidente);
        /* Roxo da imagem */
    }

    .btn-agende-mobile {
        display: inline-block;
        background-color: var(--roxo-evidente);
        color: var(--branco);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 50px;
        margin: 10px;
        font-family: var(--font-realce);
        font-size: 0.8rem;
        box-shadow: 0 4px 15px rgba(157, 0, 255, 0.4);
        transition: transform 0.2s;
    }

    .btn-agende-mobile:active {
        transform: scale(0.95);
        /* Efeito de clique no celular */
    }

    .btn-agende {
        display: none;
    }
}

/*////////// SOBRE /////////////*/
.container-mobile {
    display: none;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
    gap: 50px;
}

/* --- Coluna de Texto --- */
.text-content {
    flex: 1;
}

/* Título */
h2 {
    font-family: var(--font-principal);
    font-size: 4rem;
    color: var(--roxo-destaque);
    /* Lilás do título */
    margin-bottom: 30px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Parágrafos */
p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--texto);
    font-family: var(--font-realce);
}

/* Botão */
.btn {
    display: inline-block;
    background-color: var(--roxo-evidente);
    /* Roxo vibrante */
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    font-family: var(--font-realce);
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(189, 0, 255, 0.3);
}

.btn:hover {
    background-color: var(--roxo-destaque);
    transform: translateY(-2px);
    /* Leve subida ao passar o mouse */
}

/* --- Coluna da Imagem --- */
.image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-content img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    /* Opcional: leve arredondamento nos cantos */
}

/*////////// SOBRE MOBILE /////////////*/
@media (max-width: 768px) {
    .container-mobile {
        display: flex;
        flex-direction: column;
        /* Empilha um elemento embaixo do outro */
        align-items: center;
        /* Centraliza tudo horizontalmente */
        max-width: 450px;
        /* Limite de largura para parecer mobile */
        width: 100%;
        margin-top: 20px;
        padding: 0 30px;
        /* Adicionado para remover a borda */
        border: none;
        /* Adicionado para remover o contorno de clique/foco do navegador */
        outline: none;
    }

    /* Estilo do Título */
    h2 {
        font-family: var(--font-principal);
        font-size: 2.6rem;
        /* Fonte bem grande */
        color: var(--roxo-destaque);
        /* Tom lilás claro da imagem */
        margin-bottom: 20px;
        line-height: 1;
        text-align: center;
    }

    /* Estilo da Imagem */
    .image-content {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 25px;

    }

    .image-content img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 4px;
        /* Leve arredondamento nos cantos, opcional */
        /* Se não tiver a imagem, isso cria um bloco cinza para visualizar: */
        min-height: 350px;
        background-color: var(--branco);
    }

    /* Estilo do Texto */
    .text-content {
        width: 100%;
        text-align: center;
        /* Texto alinhado à esquerda para leitura */
    }

    p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
        color: var(--texto);
    }

    /* Container do Botão (para centralizar apenas o botão) */
    .btn-container {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 40px;
    }

    /* Estilo do Botão */
    .btn {
        background-color: var(--roxo-evidente);
        /* Roxo vibrante */
        color: var(--branco);
        padding: 12px 30px;
        border-radius: 50px;
        /* Borda redonda (pílula) */
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        /* Sombra suave */
        transition: transform 0.2s;
    }

    .btn:hover {
        background-color: #9c00d6;
        transform: scale(1.05);
    }

    .container {
        display: none;
    }
}


/*//////////////// TRANÇAS ///////////////*/

.carousel-section {
    text-align: center;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.carousel-section h2 {
    color: var(--roxo-evidente);
    letter-spacing: 2px;
}

.subtitle-profile {
    color: var(--roxo-destaque);
    margin-bottom: 40px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.viewport {
    width: 100%;
    width: 900px;
}

.track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.card {
    min-width: 280px;
    text-align: center;
}

.card img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 6px;
}

.card span {
    display: block;
    margin-top: 10px;
    color: var(--roxo-destaque);
}

.prev,
.next {
    background: none;
    border: none;
    font-size: 40px;
    color: var(--roxo-evidente);
    cursor: pointer;
}

@media (max-width: 768px) {

    .next,
    .prev {
        display: none !important;
    }
}

.track {
    touch-action: pan-y;
    will-change: transform;
}


.carrossel {
    display: none;
}


@media (max-width: 768px) {
    .carrossel-pc {
        display: none;
    }

    .carrossel {
        display: flex;
        flex-direction: column;
        /* Alinha os itens (título e swiper) verticalmente */
        align-items: center;
        /* Centraliza horizontalmente */
        justify-content: center;
        width: 100%;
    }

    .text-profile {
        display: block;
        /* Mudado de inline-block */
        text-align: center;
        /* Centraliza o texto dentro da div */
        width: 100%;
    }

    .subtitle-profile {
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .swiper {
        width: 70%;
        height: 40vh;
        margin: 0 auto;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--branco);
        /* Cor de fundo caso a imagem demore a carregar */
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Faz a imagem preencher o slide sem distorcer */
    }
}

/* /////// CARROSSEL PROFILE PC //////////////*/
section.carrossel,
section.carrossel-pc {
    margin-bottom: 80px;
    /* Ajuste esse valor conforme desejar mais ou menos espaço */
    padding-top: 20px;
}

.mySwiper-pc {
    width: 83%;
    max-width: 1200px;
    /* Evita que fique gigante em monitores ultra-wide */
    height: auto;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden;
}

.swiper-slide-pc {
    text-align: center;
    font-size: 18px;
    background: var(--texto);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.swiper-slide-pc img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-pc {
    display: flex;
    justify-content: center;
    height: auto;
    /* Ajusta a altura automaticamente */
    max-height: 80%;
    /* Garante espaço para o texto embaixo */
    object-fit: cover;
    border-radius: 8px
}

.legenda {
    margin-top: 10px;
    color: var(--roxo-destaque);
    /* Cor roxa aproximada da sua imagem */
    font-size: 18px;
    font-weight: bold;
    text-transform: lowercase;
    /* Para ficar igual ao seu exemplo */
    display: flex;
    justify-content: center;
}

.carrosel-pc h2 {
    color: var(--roxo-evidente);
    letter-spacing: 2px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.carrosel-pc {
    display: flex;
    flex-direction: column;
    /* Empilha o Título, o Swiper e a Legenda verticalmente */
    align-items: center;
    /* Centraliza tudo horizontalmente */
    justify-content: center;
    width: 100%;
    /* Ocupa a largura total para poder centralizar o conteúdo */
    padding: 20px 0;
}

.text-profile {
    width: 100%;
    /* Ocupa a largura total */
    display: flex;
    /* Ativa o flexbox */
    flex-direction: column;
    /* Coloca um embaixo do outro */
    align-items: center;
    /* Centraliza horizontalmente */
    text-align: center;
    /* Garante que o texto em si fique centralizado */
    margin-bottom: 30px;
}

.subtitle-profile {
    color: var(--roxo-destaque);
    margin-bottom: 40px;
    font-family: var(--font-realce);
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    display: block;
}

/* /////// Comments ///////// */
#testimonials {
    min-height: 30vh;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    padding: 32px 8%;
}

#testimonials-header {
    text-align: center;
}

#testimonials-header h1 {
    font-family: var(--font-realce);
    font-size: 18px;
    font-weight: 600;
    color: var(--roxo-evidente);
    margin: 0;
}

#testimonials-header h2 {
    margin-top: 10px;
}

#testimonials-header p {
    color: var(--roxo-destaque);
    font-size: 1rem;
    max-width: 485px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper-comments {
    width: 100%;
    height: 329px;
    padding-bottom: 38px;
    /* mais espaço */
    height: auto !important;
}

.mySwiper-comments .swiper-slide {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    box-shadow: 0px 0px 20px 0px rgba(92, 115, 160, 0.07);
    padding: 34px;
    border-radius: 12px;
    /* Alinhamento vertical constante */
    justify-content: space-between;

    /* Defina uma altura fixa que caiba o maior texto */
    height: 280px !important;
}

.testimonial-quote {
    margin: 0;
    font-size: 16px;
    font-family: var(--font-realce);
    color: var(--roxo-principal);
}

.testimonial-rate {
    display: flex;
    gap: 2px;
}

.testimonials-rate i {
    color: #FFD700;
    /* Cor amarela ouro */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-info {
    font-family: var(--font-principal);
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--roxo-principal);
}

.swiper-button-next .swiper-button-prev {
    background-color: var(--branco);
    width: 35px;
    height: 35px;
    border: 1px solid #f9fafb;
    border-radius: 100%;
    box-shadow: 0px 0px 20px 0px rgba(92, 115, 160, 0.2);
    color: var(--roxo-evidente);
}

.swiper-navigation-icon {
    display: none;
}

.swiper-button-prev::after {
    content: '\f053';
    font-family: 'Font Awesome 5 free';
    font-weight: 900;
    font-size: 14px;
    color: var(--roxo-evidente);
}

.swiper-button-next::after {
    content: '\f054';
    font-family: 'Font Awesome 5 free';
    font-weight: 900;
    font-size: 14px;
    color: var(--roxo-evidente);
}

.swiper-pagination-comments .swiper-pagination-bullet {
    background: #ccc !important;
    /* Cor das bolinhas inativas */
    opacity: 1;
    margin: 0 5px !important;
}

.swiper-pagination-comments .swiper-pagination-bullet-active {
    background-color: var(--roxo-evidente) !important;
    /* Sua cor ativa */
}

.swiper-pagination-comments {
    position: relative !important;
    /* Tira do modo absoluto para não sumir */
    bottom: auto !important;
    /* Anula o posicionamento padrão do Swiper */
    top: auto !important;
    /* Garante que não suba */
    margin-top: 40px !important;
    /* Empurra as bolinhas para baixo do card */
    text-align: center;
    width: 100% !important;
    display: block !important;
    z-index: 10;
}

@media (max-width:768px) {
    .author-avatar {
        width: 30px;
        height: 30px;
    }
}

/* informações */

#important-info {
    padding: 60px 8%;
    background-color: #e5cfff;
}

.info-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    /* Faz o texto descer no celular */
}

/* Lado do Mapa */
.info-map {
    flex: 1;
    min-width: 300px;
}

.info-map iframe {
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.address-text {
    margin-top: 15px;
    color: var(--roxo-evidente);
    font-size: 0.9rem;
    text-align: center;
}

/* Lado do Texto */
.info-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.info-content h1 {
    font-family: var(--font-principal);
    color: var(--roxo-evidente);
    /* Roxo vibrante da imagem */
    font-size: 2.5rem;
    margin-bottom: 30px;
    margin-top: 0;
}

.info-content p {
    color: var(--roxo-evidente);
    /* Roxo claro dos parágrafos */
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.info-map .mobile {
    display: none;
}

/* Configuração para telas menores (Celulares) */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .info-map .PC {
        display: none;
    }

    .info-map .mobile {
        display: block;
    }

    .info-content p {
        font-size: 1rem;
    }
}

.contact-cta {
    width: 100%;
    padding: 80px 20px;
    /* Espaçamento interno */
    background-color: var(--branco);
    /* Fundo branco */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container para limitar a largura e centralizar */
.cta-container {
    max-width: 600px;
    /* Impede que o texto fique muito largo em telas grandes */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Título */
.cta-title {
    font-family: var(--font-principal, "Staatliches", sans-serif);
    font-size: 3.5rem;
    /* Tamanho grande */
    line-height: 1;
    color: var(--roxo-evidente);
    /* Roxo Neon da imagem */
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Texto descritivo */
.cta-text {
    font-family: var(--font-realce, "DM Sans", sans-serif);
    color: var(--roxo-destaque);
    /* Lilás claro da imagem */
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 500px;
    /* Para quebrar a linha igual à imagem */
}

/* Botão */
.btn-orcamento {
    background-color: var(--roxo-evidente);
    /* Mesmo roxo do título */
    color: #fff;
    font-family: var(--font-realce, "DM Sans", sans-serif);
    font-weight: 700;
    /* Negrito */
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    /* Borda redonda (pílula) */
    box-shadow: 0 4px 15px rgba(191, 0, 255, 0.3);
    /* Sombra suave */
    transition: transform 0.2s ease, background-color 0.3s ease;
}

/* Efeito Hover (passar o mouse) */
.btn-orcamento:hover {
    transform: scale(1.05);
    /* Aumenta levemente */
    background-color: var(--roxo-destaque);
    /* Escurece um pouco */
}

/* --- Responsivo (Celular) --- */
@media (max-width: 768px) {
    .contact-cta {
        padding: 50px 20px;
    }

    .cta-title {
        font-size: 2.5rem;
        /* Fonte um pouco menor no celular */
    }

    .cta-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .btn-orcamento {
        width: 100%;
        /* Botão ocupa largura total disponível */
        max-width: 320px;
        /* Mas não fica gigante */
        padding: 15px 20px;
    }
}

.main-content {
    padding: 2rem;
    text-align: center;
}

/* FOOTER STYLES START HERE */

.footer-minimal {
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    font-size: 0.875rem;
    border-top: 1px solid #e7e7e7;
}

.footer-minimal__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1rem 1.5rem;

    /* Mobile-first: stack items vertically and center them */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-minimal__copyright {
    margin: 0;
    text-align: center;
}

.footer-minimal__nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.5rem;
    /* Space between icons */
}

.footer-minimal__nav a {
    color: var(--footer-text-color);
    transition: color 0.2s ease-in-out;
}

.footer-minimal__nav a:hover {
    color: var(--footer-link-hover-color);
}

.footer-minimal__nav svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    /* Inherits the color of the parent link */
}

/* Media query for medium screens and up (tablets, desktops) */
@media (min-width: 576px) {
    .footer-minimal__container {
        /* On these screens, arrange items in a row */
        flex-direction: row;
        justify-content: space-between;
    }
}