@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');



body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #efe6fe;
}

html {
    scroll-behavior: smooth;
}

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

::selection {
    background-color: #a441e8;
    color: white;
}

::-moz-selection {
    background-color: #a441e8;
    color: white;
}



header {
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1002;
}

nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.imgLogoNav {
    height: 2.5rem;
    width: auto;
}

/* Menu lateral e overlay apenas no mobile */
@media screen and (max-width: 1020px) {
    header {
        padding: 1rem 3rem;
        height: 10rem;

    }

    .menu-toggle {
        display: block;
        font-size: 4rem;
        background: none;
        border: none;
        cursor: pointer;
    }

    .voltar {
        display: block;
    }

    .imgLogoNav {
        margin-left: auto;
        height: 6rem;
    }

    .nav-mobile {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        padding: 6rem 3rem;
        gap: 3rem;
        font-size: 2.4rem;
        transition: left 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-mobile.active {
        left: 0;
    }

    .nav-mobile a {
        text-decoration: none;
        color: black;
        font-weight: bold;
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-mobile a::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0%;
        height: 3px;
        background: #523b1d;
        transition: width 0.3s ease;
    }

    .nav-mobile a:hover {
        color: #523b1d;
    }

    .nav-mobile a:hover::after {
        width: 100%;
    }

    .nav-mobile .close-menu {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 3rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #000;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        transition: opacity 0.3s ease;
    }

    .overlay.active {
        display: block;
    }


    .user {
        font-weight: 600;
        color: #d15a91;
        display: flex;
        align-items: center;
        transition: transform 0.2s ease;
        cursor: pointer;
    }

    .user:hover {
        transform: scale(1.05);
        color: #f49ac2;
    }

    .user i {
        font-size: 6rem;
        /* Tamanho do ícone padrão */
    }

    .username {
        font-size: 1rem;
    }
}

@media screen and (min-width: 1021px) {
    nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    nav a {
        position: relative;
        text-decoration: none;
        color: #1e1a1a;
        font-weight: 500;
        font-size: 1.1rem;
        padding: 0.4rem 0;
        transition: color 0.3s ease;
    }

    nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0%;
        height: 2px;
        background: #f49ac2;
        transition: width 0.3s ease;
    }

    nav a:hover {
        color: #f49ac2;
    }

    nav a:hover::after {
        width: 80%;
    }

    header {
        padding: 1rem 3rem;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
    }

    header:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .user {
        font-weight: 600;
        color: #d15a91;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        cursor: pointer;
    }

    .user:hover {
        transform: scale(1.05);
        color: #f49ac2;
    }

    .menu-toggle,
    .voltar {
        display: none;
    }
}

.hero {
    background-image: url('/images/fundoHome.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
}


.botao-seta-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid black;
    border-radius: 50%;
    background-color: transparent;
    color: black;
    font-size: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
}

.botao-seta-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: black;
    z-index: 0;
    transition: width 0.4s ease;
}

.botao-seta-link:hover::before {
    width: 100%;
}

.botao-seta-link .seta-direita {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.botao-seta-link:hover .seta-direita {
    color: white;
}


.btn {
    background-color: #a441e8;
    color: white;
    padding: 1rem 2rem;
    border: none;
    font-weight: bold;
    cursor: pointer;
    width: fit-content;
    transition: background 0.3s;
    text-transform: uppercase;
    text-decoration: none;
}


.btn:hover {
    background-color: #8b36c6;
    transform: scale(1.05);
}

.imgLogoHome {
    height: 350px;
    width: auto;
}

.secaoInfos {
    position: relative;
    background-color: #f4eafd;
    padding: 60px 40px 0;
    overflow: hidden;
}

.container-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    position: relative;
    padding: 30px;
}

.carInfo {
    background-color: #fff;
    border: 2px solid #e1caef;
    border-radius: 20px;
    padding: 40px;
    flex: 1 1 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    color: #000;
    height: auto;

}

.textoCard h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.textoCard p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.carInfo button {
    border: 2px solid black;
    background: transparent;
    padding: 10px 14px;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: black;
    position: relative;
    overflow: hidden;
}

.carInfo:hover {
    transform: translateY(-5px);
}


.carInfo button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: black;
    transition: left 0.3s ease;
    z-index: 0;
}

.carInfo button:hover::before {
    left: 0;
}

.carInfo button span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.carInfo button:hover span {
    color: white;
}

.carInfo img {
    width: 200px;
    height: auto;
}


.fundo-ondas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.imagensInfo {
    height: 50vh;
    width: auto;
}

.parteSaibaMais {
    position: relative;
    height: 60vh;
    background: url('../images/gifLuxHome.gif') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 50px;
    color: white;
}

.parteSaibaMais::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.parteSaibaMais .conteudo {
    position: relative;
    width: 600px;
    z-index: 1;
}

.parteSaibaMais h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.parteSaibaMais p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.parteSaibaMais button {
    padding: 15px 30px;
    background-color: #a143cd;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.parteSaibaMais button:hover {
    background-color: #712f90;
}

.divas-entrada-section {
    position: relative;
    width: 100%;
    background-color: #efe6fe;
    overflow: hidden;
}

.divas-banner-topo {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
}

.divas-banner-topo img {
    width: 100%;
    height: auto;
    display: block;
}

.divas-container {
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 2;
    padding-top: 20px;
    /* Espaço para o topo roxo */
}

.divas-lado-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divas-lado-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.divas-lado-conteudo {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.divas-lado-conteudo h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1e1a1a;
}

.divas-texto-destaque {
    color: #382060;
}

.divas-lado-conteudo p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.divas-mensagem-chamada {
    font-weight: bold;
    margin-top: 10px;
}

.divas-botao-formulario {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #382060;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    width: fit-content;
}

.divas-botao-formulario:hover {
    background-color: rgb(44, 21, 72);
}


.secao-entrada-guilda {
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: #efe6fe;
    padding: 40px 0;
    width: 100%;
}

.contguild {
    display: flex;
    align-items: center;
    width: 80%;
}

.bloco-texto-guilda {
    flex: 1;
    padding-left: 3%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    justify-content: center;
}

.titulo-guilda {
    color: #a143cd;
    font-size: 43px;
    font-weight: 700;
    white-space: nowrap;
    width: 0;
}



.item-guilda {
    background-color: #2e1065;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    line-height: 1.4;
    font-size: 20px;
    max-width: 500px;
}


.destaque-link-guilda {
    color: #a143cd;
    font-weight: 600;
}

.bloco-imagem-guilda {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;

}

.bloco-imagem-guilda img {
    display: block;
    width: 500px;
    height: auto;
    max-height: auto;
}

.footer-custom {
    background-color: #f9f5ff;
    padding: 3rem 2rem;
    font-family: Arial, sans-serif;
    border-radius: 1rem 1rem 0 0;
    color: #000;
}

.footer-custom-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-custom-col {
    flex: 1 1 200px;
    color: #000;
}

.footer-custom-logo-contact {
    max-width: 300px;
}

.footer-custom-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-custom-logo img {
    height: 30px;
    margin-right: 0.5rem;
}

.footer-custom-strong {
    color: #000;
}

.footer-custom-email-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: #000;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background-color 0.3s;
}

.footer-custom-email-link:hover {
    background-color: #e0d7ff;
}

.footer-custom-arrow {
    display: inline-block;
    margin-left: 8px;
    background-color: #150e27;
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 50%;
    font-size: 0.8rem;
}

.footer-custom-col h4 {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #000;
}

.footer-custom-list {
    list-style: none;
    padding: 0;
}

.footer-custom-list li {
    margin-bottom: 0.4rem;
}

.footer-custom-list a {
    text-decoration: none;
    color: #000;
    transition: color 0.2s;
}

.footer-custom-list a:hover {
    color: #7a5cd6;
}

.footer-custom-nav-social {
    display: flex;
    gap: 4rem;
    flex: 2;
}

.footer-custom-bottom {
    margin-top: 2rem;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #000;
}

.footer-custom-dev-link {
    color: #000;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer-custom-dev-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.footer-custom-dev-link:hover {
    color: #333;
}

.footer-custom-dev-link:hover::after {
    width: 100%;
}

/* Responsivo */

@media screen and (max-width: 1020px) {
    header {
        flex-direction: row;
        align-items: flex-start;
        padding: 1rem;
    }

    nav a {
        display: block;
        margin: 0.5rem 0;
    }

    .hero {
        height: auto;
    }

    .parteSaibaMais {
        height: auto;
    }

    .hero h1 {
        font-size: 4.2rem;
    }

    .hero p {
        font-size: 2rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 1rem;
        font-size: 2rem;
    }

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

    .carInfo {
        flex-direction: row;
        width: 90%;
        height: 80px;
        text-align: center;
        padding: 20px;
        justify-content: space-around;

    }

    .carInfo .textoCard h3 {
        font-size: 40px;
    }

    .carInfo .textoCard p {
        font-size: 30px;
    }

    .textoCard {
        width: 50%;
        padding: 10px;
    }

    .carInfo img {
        width: 350px;
        padding: 0px;
        height: auto;
        padding: 30px;
    }

    .imagensInfo {
        height: auto;
        width: 100%;
    }

    .carInfo button {
        border: 2px solid black;
        background: transparent;
        padding: 1px 14px;
        border-radius: 50px;
        font-size: 2.4rem;
        cursor: pointer;
        transition: all 0.3s ease;
        color: black;
        position: relative;
        overflow: hidden;
    }


    .parteSaibaMais {
        height: auto;
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;

    }

    .parteSaibaMais h1 {
        font-size: 5rem;
    }

    .parteSaibaMais p {
        font-size: 2rem;
    }

    .parteSaibaMais button {
        width: 100%;
        padding: 2rem;
        font-size: 2rem;

    }

    .divas-container {
        flex-direction: column;
    }

    .divas-lado-visual,
    .divas-lado-conteudo {
        width: 100%;
        padding: 20px;
    }

    .divas-lado-conteudo {
        padding-top: 0;
    }

    .divas-banner-topo img {
        height: auto;
    }




}

@media screen and (max-width: 1020px) {
    .secao-entrada-guilda {
        flex-direction: column;
        text-align: center;
    }

    .contguild {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .bloco-imagem-guilda {
        display: none;
        /* remove a imagem */
    }

    .bloco-texto-guilda {
        padding: 0;
        gap: 2.5rem;
        width: 100%;
        max-width: 600px;
    }

    .titulo-guilda {
        font-size: 32px;
        width: 10%;
        width: auto;
    }


    .item-guilda {
        font-size: 2rem;
        padding: 1.4rem 2rem;
        max-width: 100%;
        border-radius: 12px;
    }

    .destaque-link-guilda {
        font-weight: bold;
        color: #d0a0f3;
    }
}

/* Responsividade */
@media screen and (max-width: 1020px) {
    .divas-container {
        flex-direction: column;
        margin: 20px;
        padding-top: 55px;
    }

    .divas-lado-visual {
        display: none;
    }

    .divas-lado-conteudo h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .divas-lado-conteudo p {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .divas-mensagem-chamada {
        font-size: 20px;
    }

    .divas-botao-formulario {
        padding: 12px 12px;
        font-size: 2rem;
    }
}


@media screen and (max-width: 1020px) {
    .footer-custom {
        padding: 3rem 2rem;
        text-align: center;
    }

    .footer-custom-container {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    .footer-custom-logo-contact {
        max-width: 100%;
    }

    .footer-custom-logo {
        justify-content: center;
    }

    .footer-custom-logo img {
        height: 60px;
    }

    .footer-custom-strong {
        font-size: 2rem;
        font-weight: bold;
    }

    .footer-custom p {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

    .footer-custom-email-link {
        font-size: 1.5rem;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .footer-custom-arrow {
        font-size: 1.3rem;
        padding: 0.5rem 0.8rem;
    }

    .footer-custom-nav-social {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        width: 100%;
    }

    .footer-custom-col h4 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .footer-custom-list a {
        font-size: 1.6rem;
    }

    .footer-custom-list li {
        margin-bottom: 0.8rem;
    }

    .footer-custom-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        font-size: 1.5rem;
        text-align: center;
        margin-top: 3rem;
    }

    .footer-custom-dev-link {
        font-size: 1.5rem;
    }
}



/* SOBRE NOS */


.sobreNos {
    background-image: url('/images/backsobre.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;

}

.conteudoSobre h2 {
    color: white;
    font-size: 3.1rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    font-family: 'Cinzel', serif;
}

.textoSobre {
    width: 70%;
}

.box-texto {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.box-texto h3 {
    font-family: 'Poppins', serif;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.box-texto p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
}

@media screen and (max-width: 1020px) {
    .conteudoSobre h2 {
        font-size: 4.1rem;
    }

    .box-texto h3 {
        font-size: 2.6rem;
    }

}


.adms-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 340px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adms-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.adms-card-img {
    width: 100%;
    height: auto;
    display: block;
}

.adms-card-body {
    padding: 20px;
    text-align: center;
}

.adms-card-title {
    margin: 10px 0 5px;
    font-size: 20px;
    color: #333;
}

.adms-card-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.adms-btn-instagram {
    background-color: #9b34eb;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease;
}

.adms-btn-instagram:hover {
    background-color: #b85cff;
}



.card-list .card-item {
    list-style: none;
}

.card-list .card-item .card-link {
    user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
    cursor: grabbing;
}

.card-list .card-item .card-link:hover {
    border-color: #7a5cd6;
}

.card-list .card-link .card-image {
    width: 100%;
    height: 300px; /* Você pode ajustar essa altura como quiser */
    object-fit: cover;
    border-radius: 10px;
}


.card-list .card-item .badge {
    color: #7a5cd6;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: #efe6fe;
    width: fit-content;
    border-radius: 50px;
}

.card-list .card-item .card-title {
    font-size: 1.19rem;
    color: #000;
    font-weight: 600;
}

.card-list .card-link .card-button {
    height: 35px;
    width: 35px;
    color: #7a5cd6;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    border: 2px solid #7a5cd6;
    transform: rotate(-45deg);
}

.card-list .card-item .card-link:hover .card-button {
    color: #fff;
    background-color: #7a5cd6;
    transition: 0.4 ease;

}

.card-wrapper {
    width: 100%;
    padding: 0 40px 45px;
    overflow: hidden;
    box-sizing: border-box;
}


.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #7a5cd6;

}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    color: #7a5cd6;
    margin-top: -35px;
}

@media screen and (max-width: 1020px) {
    .card-wrapper {
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slide-button {
        display: none;
    }
}


.social-section {
    background: linear-gradient(135deg, #a143cd, #c674e8);
    color: white;
    padding: 3rem 1.5rem;
    text-align: center;
}

.social-section__container {
    max-width: 700px;
    margin: 0 auto;
}

.social-section__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-section__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-section__card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
    color: white;
}

.social-section__card:hover {
    transform: scale(1.02);
    background-color: rgba(255, 255, 255, 0.2);
}

.social-section__icon {
    font-size: 2.5rem;
    margin-top: 0.3rem;
}

.social-section__info {
    flex: 1;
}

.social-section__platform {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.social-section__handle {
    font-size: 0.95rem;
    margin: 0.1rem 0 0.4rem;
    opacity: 0.85;
}

.social-section__description {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

@media screen and (max-width: 1020px) {
    .social-section__platform {
        font-size: 1.9rem;

    }

    .social-section__handle {
        font-size: 1.55rem;
    }

    .social-section__description {
        font-size: 1.3rem;

    }

    .social-section__card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-section__info {
        text-align: center;
    }

    .social-section__icon {
        margin-bottom: 0.5rem;
    }

}


.containerContato {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.contato-section {
    background-color: #fff;
    display: flex;
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.contato-info {
    flex: 1;
    padding: 40px 30px;
}

.contato-info__titulo {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.contato-info__descricao {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

.contato-form__grupo {
    margin-bottom: 20px;
    position: relative;
}

.contato-form__input,
.contato-form__textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: transparent;
}

.contato-form__input:focus,
.contato-form__textarea:focus {
    border-bottom: 2px solid #617dff;
}

.contato-form__textarea {
    resize: none;
    height: 80px;
}

.contato-form__botao {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    color: #272727;
    border: 2px solid #272727;
    padding: 10px 0;
    width: 100%;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.4s ease;
    z-index: 1;
}

.contato-form__botao::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #272727;
    z-index: -1;
    transition: width 0.4s ease;
    border-radius: 25px;
}

.contato-form__botao:hover {
    color: white;
}

.contato-form__botao:hover::before {
    width: 100%;
}


.contato-imagem {
    flex: 1;
    background-image: url('/images/contato.png');
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}

.contato-section:hover .contato-imagem {
    transform: scale(1.03);
}

@media screen and (max-width: 1020px) {
    .contato-section {
        flex-direction: column;
    }

    .contato-imagem {
        height: 300px;
    }


}

.eventosSection {
    background-image: url('/images/fundoEventos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 30px;
}

.revistas-section {
    padding-left: 2rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-content: center;
    padding: 40px;
    background-color: #a143cd;
}

.revista-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.revista-card:hover {
    transform: translateY(-5px);
}

.revista-card img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.revista-actions {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: #272727;
    color: white;
}

.revista-actions a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.revista-actions a:hover {
    opacity: 0.8;
}

.revista-actions svg {
    width: 18px;
    height: 18px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
}

.modal.active {
    display: flex;
}

/* Responsividade para dispositivos móveis */
@media screen and (max-width: 1020px) {

    .revista-card {
        max-width: 80%;
        width: 80%;
    }

    .revista-img {
        height: auto;
        max-height: 90vh;
    }

    .revista-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        padding: 1rem;
    }

    .revista-actions a {
        font-size: 1.2rem;
    }

    .revista-actions svg {
        width: 24px;
        height: 24px;
    }
}

.textoRevistinha {
    color: white;
    font-size: 2.1rem;
    font-weight: bold;
    padding: 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-family: 'Poppins', serif;
}


.cardDosEventosFundo {
    position: relative;
    width: 100%;
    max-width: 1450px;
    height: 350px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background-image: url('/images/imgEventoPoro.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: stretch;
}

.cardDosEventosGradiente {
    width: 40%;
    margin-left: auto;
    padding: 50px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 5%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #190033;
    z-index: 2;
}

.cardDosEventosGradiente h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 90px;
}

.cardDosEventosGradiente button {
    background-color: #a143cd;
    color: white;
    padding: 12px 24px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cardDosEventosGradiente button:hover {
    background-color: #4b007d;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Responsividade */
@media screen and (max-width: 1020px) {
    .cardDosEventosFundo {
        flex-direction: column;
        height: auto;
        background-position: top;
    }

    .cardDosEventosGradiente button {
        font-size: 1.2rem;
        padding: 16px 32px;
        width: 100%;
        text-align: center;
    }

}


.event-results {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 1rem;
    justify-content: flex-start;
    font-family: 'Poppins', sans-serif;
}



.event-card {
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    width: calc(50% - 0.5rem);
    /* Exatamente 2 por linha */
    min-height: 250px;
    /* Altura mínima (permite crescer só se necessário) */
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.event-card:hover {
    transform: scale(1.02);
}

.event-image {
    width: 40%;
    height: 100%;
    object-fit: cover;
    border-right: 3px solid #9333ea;
}

.event-info {
    padding: 1rem;
    flex: 1;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.event-info h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.event-desc,
.event-date {
    font-size: 0.85rem;
    color: #666;
    white-space: normal;
    overflow: visible;
}


.winners {
    background-color: #9333ea;
    padding: 0.5rem;
    border-radius: 10px;
    color: white;
    box-shadow: 3px 3px 0 #6d6d6d;
}

.winners h4 {
    margin: 0 0 0.3rem 0;
    font-size: 0.95rem;
}

.winners ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.winners li {
    font-size: 0.85rem;
    color: #f0e9ff;
}

/* 📱 Responsivo para celular */
@media screen and (max-width: 1020px) {
    .event-card {
        width: 100%;
        flex-direction: column;
        height: auto;
    }

    .event-image {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 3px solid #9333ea;
    }

    .event-info {
        padding: 1rem;
        text-align: center;
    }

    .winners {
        margin-top: 1rem;
    }

    .event-info h3 {
        font-size: 2.2rem;
    }

    .event-info p {
        font-size: 1.5rem;
    }
}

.hall-da-fama {
    font-family: 'Poppins', sans-serif;
    padding: 2rem 1rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* opcional, ajuda em telas menores */
}


/* Banner superior */
.hall-banner {
    width: 95%;
    position: relative;
    border: 5px solid white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hall-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hall-banner h2 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 8px #000;
}

/* Card com info */
.comp-card {
    display: flex;
    background-color: white;
    color: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #9333ea;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    flex-wrap: wrap;
}

.comp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comp-image {
    flex: 1 1 300px;
    min-width: 300px;
    max-height: 220px;
    overflow: hidden;
}

.comp-info {
    flex: 1 1 300px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.comp-info h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4c1d95;
}

.comp-info a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
}

.comp-info .comp-data {
    position: absolute;
    bottom: 0.75rem;
    right: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: black;
}

/* 📱 Responsivo */
@media (max-width: 768px) {
    .hall-banner {
        width: 100%;
    }

    .comp-card {
        flex-direction: column;
    }

    .comp-image {
        max-height: 180px;
    }

    .comp-info {
        text-align: center;
        padding: 1rem;
    }

    .comp-info .comp-data {
        position: static;
        margin-top: 1rem;
    }
}


.calendario-comunidade {
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: center;
    padding: 3rem
}

.calendario-comunidade h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.tabela-calendario {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.linha {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 2fr;
    gap: 1rem;
    background-color: #2b2b2b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    align-items: center;
    font-size: 0.9rem;
}

.linha.header {
    background-color: #a046e2;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.linha span {
    overflow-wrap: break-word;
}

.encerrado {
    color: red;
    font-weight: bold;
}

.agendado {
    color: lightgreen;
    font-weight: bold;
}

/* Responsividade */
@media screen and (max-width: 1020px) {
    .tabela-calendario {
        width: 100%;
    }

    .linha {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        font-size: 2rem;
        padding: 0.8rem 1rem;
    }

    .linha.header {
        display: none;
    }

    .linha span {
        text-align: left;
        display: block;
        width: 100%;
    }



}

.calendario-tabela {
    width: 100%;
    border-collapse: collapse;
    background: #f8ecff;
    border-radius: 8px;
    overflow: hidden;
    color: #000;
    font-size: 1rem;
}

.calendario-tabela th,
.calendario-tabela td {
    padding: 1.2rem;
    text-align: left;
    word-break: break-word;
}

.calendario-tabela th {
    background-color: #e9d6ff;
    font-weight: bold;
    font-size: 1.1rem;
}

.calendario-tabela td {
    border-top: 1px solid #ddd;
}

.calendario-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    display: inline-block;
}

.status-proximo {
    background-color: #9d00e6;
}

.status-concluido {
    background-color: #d3a7ff;
    color: #000;
}

.status-andamento {
    background-color: #00b894;
}

.status-cancelado {
    background-color: #d63031;
}

/* Hover e interações */
.calendario-btn-add:hover,
.calendario-btn-save:hover {
    background-color: #7e00b8;
    transform: scale(1.03);
    transition: all 0.2s ease-in-out;
}

.calendario-btn-add,
.calendario-btn-save {
    transition: all 0.2s ease-in-out;
}

.calendario-tabela tbody tr:hover {
    background-color: #f0dfff;
    transition: background-color 0.2s ease-in-out;
}

.calendario-acoes i:hover {
    transform: scale(1.2);
    color: #7e00b8;
    transition: all 0.2s ease-in-out;
}

.calendario-btn-close:hover {
    color: #a100e6;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #a100e6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(161, 0, 230, 0.2);
    transition: all 0.2s ease-in-out;
}

/* Responsividade */
@media screen and (max-width: 1020px) {
    .calendario-tabela {
        font-size: 2.95rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .calendario-tabela th,
    .calendario-tabela td {
        padding: 0.8rem;
        font-size: 1.50rem;
    }

    .textoRevistinha {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .calendario-status {
        font-size: 0.9rem;
    }

    .calendario-comunidade {
        padding: 1rem;
    }

    .comp-card {
        width: 90%;
    }

    .comp-card p,
    .comp-card a {
        font-size: 1.3rem;
    }

    .comp-card span.comp-data {
        font-size: 1.1rem;
    }

    .comp-card h3 {
        font-size: 1.5rem;
    }

    .textoRevistinha {
        font-size: 2.00rem;

    }

    .event-results {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 2rem 1rem;
        justify-content: flex-start;
        font-family: 'Poppins', sans-serif;
    }

    .event-card {
        flex: 1 1 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }


    .event-results h4,
    .event-results li {
        font-size: 2.00rem;

    }

    .contato-info__descricao {
        font-size: 1.7rem;
    }

    .contato-form__input {
        font-size: 1.7rem;
    }

    .contato-form__textarea {
        font-size: 1.7rem;
    }

    .contato-form__botao {
        font-size: 1.8rem;

    }
}

.status-proximo {
    background-color: #00bfff;
}

.status-andamento {
    background-color: #ffa500;
}

.status-concluido {
    background-color: #28a745;
}

.status-cancelado {
    background-color: #dc3545;
}


.containerLoja {
    background-image: url('/images/fundoLoja.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 30px;

}

.buscarItensLoja {
    position: relative;
    background-image: url('/images/bannerBuscar.png');
    background-size: cover;
    background-position: center;
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
}

.buscarItensLoja-overlay {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 800px;
}

.buscarItensLoja-titulo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 4px #000;
}

.buscarItensLoja-searchBox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background-color: white;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.buscarItensLoja-searchBox input {
    border: none;
    padding: 12px 18px;
    width: 100%;
    font-size: 16px;
    border-radius: 25px 0 0 25px;
    outline: none;
    color: #4b5563;
}

.buscarItensLoja-searchBox button {
    background: transparent;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 0 25px 25px 0;
    transition: background 0.3s ease;
}

.buscarItensLoja-searchBox button:hover {
    background-color: #f0e7f8;
}

@media screen and (max-width: 1020px) {
    .buscarItensLoja {
        height: 400px;
        padding: 20px;
    }

    .buscarItensLoja-titulo {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

}

:root {
    --cor-principal: #9b4fe2;
    --cor-secundaria: #ffffff;
    --cor-hover: #8a47c8;
    --verde-whatsapp: #25d366;
    --sombra-card: 0 4px 12px rgba(0, 0, 0, 0.15);
    --borda-radius: 16px;
    --cor-texto: #e4e4e4;
    --cor-preco: #ffffff;
}

/* Layout geral */
.loja-layout {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    margin-top: 30px;
}

/* Filtros (coluna esquerda) */
.loja-filtros {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loja-filtro-btn {
    padding: 14px 20px;
    background-color: var(--cor-secundaria);
    color: #333;
    border: none;
    border-radius: var(--borda-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loja-filtro-btn.active,
.loja-filtro-btn:hover {
    background-color: var(--cor-principal);
    color: var(--cor-secundaria);
}

/* Itens (coluna direita) */
.loja-itens {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    padding: 24px;
    box-sizing: border-box;
    flex: 1;
}

.cardsLojaForeach {
    width: 100%;
    box-sizing: border-box;
}

.loja-item-card {
    background-color: var(--cor-principal);
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-card);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    color: var(--cor-texto);
}

.loja-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.loja-item-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    display: block;
}

.loja-item-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.loja-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
    gap: 8px;
}

.loja-preco {
    font-weight: bold;
    font-size: 1rem;
    color: var(--cor-preco);
    margin: 0;
}

.loja-comprar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--verde-whatsapp);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.loja-comprar-btn:hover {
    background-color: #1ebe5d;
}

/* Responsivo para telas menores que 1024px */
@media (max-width: 1024px) {
    .loja-layout {
        flex-direction: column;
        gap: 20px;
    }

    .loja-filtros {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
        padding: 0 16px;
    }

    .loja-filtro-btn {
        flex: 1;
        min-width: 100px;
        text-align: center;
        padding: 12px;
        font-size: 0.9rem;
    }


    .loja-itens {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        justify-content: center;
        gap: 24px;
        padding: 16px;
    }

    .loja-item-card {
        width: 400px;
        height: 400px;
    }

    .loja-item-card img {
        max-height: 250px;
    }

    .loja-item-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .loja-comprar-btn {
        width: 100%;
        justify-content: center;
    }

    .loja-item-card h3 {
        font-size: 1.9rem;
    }

    .loja-preco {
        font-size: 1.3rem;
    }

    .loja-comprar-btn {
        font-size: 1.8rem;
        padding: 10px 18px;
    }

}

.loja-item-card-link {
    text-decoration: none;
    color: inherit;
}

.sectionInfo {
    background-image: url('/images/fundoLoja.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;

}

.infoContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 50px;
}

.infoFotosLoja {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.infoImagemPrincipal img {
    width: 100%;
    max-width: 555px;
    height: 555px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.infoMiniaturas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.infoMiniaturas img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.infoMiniaturas img:hover,
.infoMiniaturas img:focus {
    border-color: #9147ff;
}

.infoItemLoja {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.infoItemLoja h1 {
    color: #9147ff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.infoEstrelas span {
    color: #888;
    font-size: 0.9rem;
}

.infoPreco {
    margin: 10px 0;
}

.infoPrecoAtual {
    color: #e1005d;
    font-weight: bold;
    font-size: 1.4rem;
}

.infoPrecoOriginal {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.infoDesconto {
    background: red;
    color: white;
    padding: 3px 7px;
    font-size: 0.8rem;
    border-radius: 10px;
    margin-left: 10px;
}

.infoDescricao {
    margin: 15px 0;
    font-size: 0.95rem;
    color: #333;
}

.infoIcone {
    color: #9147ff;
}

.infoGrupo {
    margin-bottom: 15px;
}

.infoOpcoes {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.infoBtnSelecionavel {
    padding: 8px 12px;
    border: 2px solid #9147ff;
    background: white;
    color: #9147ff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.infoBtnSelecionavel.ativo,
.infoBtnSelecionavel:hover {
    background: #9147ff;
    color: white;
}

.infoQuantidade {
    display: flex;
    align-items: center;
    gap: 10px;
}

.infoQuantidade button {
    background: #eee;
    border: none;
    padding: 5px 10px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
}

.infoBotaoCarrinho {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    background: #92f9a8;
    border: none;
    padding: 12px;
    font-size: 1rem;
    width: 100%;
    border-radius: 8px;

}

.infoBotaoCarrinhoo {
    cursor: pointer;
    text-decoration: none;
    color: white;

}

.infoBotaoCarrinho:hover {
    background: #4edc4c;
    transition: all 0.2s ease;

}

.infoSKU {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.infoTags {
    margin-top: 10px;
}

.infoTags span {
    background: #eee;
    border-radius: 12px;
    padding: 5px 10px;
    margin-right: 5px;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .infoContainer {
        padding: 30px 20px;
        flex-direction: column;
        align-items: center;
    }

    .infoItemLoja {
        max-width: 100%;
    }

    .infoItemLoja h1 {
        font-size: 2.5rem;
    }

    .infoPrecoAtual {
        font-size: 2rem;
    }

    .infoPrecoOriginal {
        font-size: 1.8rem;
    }

    .infoDesconto {
        font-size: 2rem;
    }

    .infoDescricao {
        font-size: 1.9rem;
    }

    .infoGrupo p {
        font-size: 1.9rem;
    }

    .infoBtnSelecionavel {
        font-size: 1.9rem;
        padding: 10px 16px;
    }

    .infoQuantidade button {
        font-size: 1.4rem;
        padding: 8px 14px;
    }

    .infoQuantidade span {
        font-size: 1.5rem;
    }

    .infoBotaoCarrinho {
        font-size: 1.9rem;
        padding: 14px;
    }

    .infoSKU {
        font-size: 1.4rem;
    }

    .infoTags span {
        font-size: 1.2rem;
        padding: 7px 12px;
    }

    .infoMiniaturas img {
        width: 80px;
        height: 80px;
    }


    .infoImagemPrincipal img {
        width: 900px;
        max-width: 100%;
        height: 850px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }


    .infoMiniaturas {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .infoMiniaturas img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid transparent;
    }
}

.tagspVAI-container::-webkit-scrollbar {
    height: 6px;
}

.tagspVAI-container::-webkit-scrollbar-track {
    background: transparent;
}

.tagspVAI-container::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.tagspVAI {
    flex: 0 0 auto;
    background-color: #eee;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: default;
    user-select: none;
    transition: background-color 0.3s ease;
}

.tagspVAI:hover {
    background-color: #ddd;
}
.card-list .card-item .card-link {
    height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-list .card-item .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;

}
