/* Estilo para valores parcelados */
.only-pt {
    display: block !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin: 0 0 5px 0 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Botão do menu mobile */
.menu-toggle-container {
    position: absolute;
    left: 15px;
    top: 30%;
    transform: translateY(-50%);
    z-index: 1000;
}

/* Reset e estilos globais */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    padding-top: 70px; /* Ajustado para combinar com a altura do cabeçalho */
}

:root {
    --cor-primaria: #12022b; /* Roxo escuro */
    --cor-secundaria: #ffffff; /* Branco */
    --cor-destaque: #ff6b6b; /* Cor de destaque (pode ser alterada) */
    --fonte-principal: 'Montserrat', sans-serif;
}

/* Importação da fonte Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: var(--fonte-principal);
    background-color: var(--cor-primaria);
    color: var(--cor-secundaria);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container principal */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Listas */
ul {
    list-style: none;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-destaque {
    background-color: var(--cor-destaque);
    color: var(--cor-primaria);
}

.btn-destaque:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Header */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: #12022B !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease-in-out !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    -webkit-perspective: 1000px !important;
    perspective: 1000px !important;
}

/* Ajuste para o conteúdo não ficar atrás do header fixo */
body {
    padding-top: 120px !important; /* Aumentado para acomodar o cabeçalho maior */
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #12022B;
    padding: 25px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    padding: 15px 20px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    width: auto;
    gap: 40px;
}

/* Estilo do logo */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Estilo da navegação */
.nav {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

/* Estilo dos itens do menu no desktop */
.nav-links > li > a {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 5px 10px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.nav-links > li > a:hover {
    color: #9333EA;
}

/* Estilos para o header quando rolado */
.header.scrolled {
    padding: 10px 0;
    background: #12022B;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header.scrolled .logo img {
    height: 45px;
}

/* Ajustes para telas menores que 992px */
@media (max-width: 992px) {
    .header {
        padding: 10px 0;
        height: 70px;
    }
    
    .logo {
        left: 50%;
        transform: translateX(-50%);
        max-width: 180px;
    }
    
    .logo img {
        height: 50px;
        width: auto;
    }
    
    .nav {
        display: none;
    }
}

/* Estilo da navegação */
.nav {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

/* Estilo dos itens do menu no desktop */
.nav-links > li > a {
    font-size: 0.9rem; /* Reduzindo o tamanho da fonte */
    font-weight: 500;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.nav-links > li > a:hover {
    color: #9333EA; /* Cor roxa ao passar o mouse */
}

/* Estilos para o seletor de idiomas */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-option {
    background: none;
    border: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 12px;
    margin: 0 2px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-option:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.language-option.active {
    background-color: #9333EA;
    color: white;
}

.language-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0 2px;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .language-selector {
        top: 15px;
        right: 15px;
        padding: 4px;
    }
    
    .language-option {
        font-size: 13px;
        padding: 4px 10px;
    }
    
    .language-separator {
        font-size: 13px;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    .language-selector {
        top: 10px;
        right: 10px;
    }
    
    .language-option {
        font-size: 12px;
        padding: 3px 8px;
    }
}

.nav {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.logo {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.logo img {
    height: 75px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Ajuste para telas menores */
@media (max-width: 1200px) {
    .logo img {
        height: 65px;
    }
    
    .header .container {
        gap: 30px;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .header .container {
        flex-direction: column;
        padding: 15px 20px;
        gap: 20px;
        position: relative;
        align-items: center;
    }
    
    .header-content {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 30px; /* Mais espaço entre logo e menu no mobile */
        flex-wrap: nowrap;
    }
    
    .logo {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .logo img {
        height: 80px; /* Aumentado para 80px no mobile */
        margin: 0 auto;
    }
    
    .nav {
        width: 100%;
        margin: 0;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px 20px;
        padding: 0 10px;
    }
    
    .menu-mobile {
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px; /* Espaçamento confortável entre itens do menu */
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

/* Efeito da linha lilás ao passar o mouse */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #b388ff; /* Lilás */
    transform: translateX(-50%);
    transition: width 0.3s ease;
    opacity: 0;
}

.nav-links a:hover::after {
    width: 100%;
    opacity: 1;
}

.nav-links a:hover {
    color: #b388ff; /* Lilás mais claro ao passar o mouse */
}

.nav-links a.active {
    color: #b388ff;
    font-weight: 600;
}

/* Efeito de transição suave ao rolar */
.header.scrolled {
    padding: 10px 0;
    background: #12022B;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header.scrolled .logo img {
    height: 45px;
}

/* Menu Mobile removido */

/* Menu Mobile removido */

/* Estilos do menu hambúrguer removidos */

/* Estilos do menu hambúrguer removidos */

/* Estilos base dos links de navegação */
.nav-links a {
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #9333EA;
    background-color: rgba(147, 51, 234, 0.1);
}

.nav-links a:focus-visible {
    outline: 2px solid #9333EA;
    outline-offset: 2px;
}

/* Menu Mobile removido */

/* Estilos para o menu no desktop */
.nav {
    display: flex;
}

/* Esconde o menu em telas menores que 992px */
@media (max-width: 991px) {
    .nav {
        display: none;
    }
}

/* Estilos para o cabeçalho em telas menores */
@media (max-width: 992px) {
    /* Reset de margens e padding para garantir que o header ocupe toda a largura */
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    body {
        padding-top: 90px !important; /* Altura do header fixo */
    }
    
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100% !important;
        height: 90px !important;
        margin: 0 !important;
        padding: 15px 0 !important;
        z-index: 1000 !important;
        background: #12022B !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        box-sizing: border-box !important;
    }
    
    .header .container {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 30px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    
    .header {
        opacity: 1;
    }
    
    .header.hidden {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }
    
    .header.visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .header .container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        position: relative;
        padding: 0 60px; /* Espaço para os botões laterais */
    }
    
    .logo {
        position: absolute;
        left: 35%;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        max-width: 180px;
        text-align: center;
        z-index: 1;
    }
    
    .menu-mobile {
        display: flex;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        background: #9333EA;
        width: 25px;
        height: 25px;
        border-radius: 5px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .logo img {
        height: 65px;
        width: auto;
        max-width: 180px;
        display: block;
        margin: 0 auto;
    }
    
    .language-selector {
        position: fixed !important;
        right: 15px !important;
        top: 25px !important;
        z-index: 1001 !important;
        background-color: rgba(18, 2, 43, 0.9) !important;
        border-radius: 20px !important;
        padding: 5px 10px !important;
        display: flex !important;
        align-items: center !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
        margin: 0 !important;
        height: 30px !important;
    }
    
    .language-option {
        font-size: 13px;
        padding: 3px 6px;
        min-width: 28px;
        text-align: center;
    }
    
    .language-separator {
        font-size: 12px;
        opacity: 0.6;
        margin: 0 2px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 100px; /* Aumentado de 80px para 100px */
        left: 0;
        width: 100%;
        background: rgba(18, 2, 43, 0.98);
        flex-direction: column;
        align-items: center;
        z-index: 1000;
        padding: 30px 0; /* Aumentado de 20px para 30px */
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #12022B;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        transition: right 0.3s ease-in-out;
        z-index: 998;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
        background: #12022B;
    }

    /* Ajustes para mobile */
    @media (max-width: 480px) {
        /* Apenas no mobile, aplica a inclinação e ajusta o tamanho */
        .teste-card .card-content .image-container .phone-thumbnail,
        .teste-card .image-container .phone-thumbnail,
        .mobile-version .teste-slide .card-content .image-container .phone-thumbnail,
        .phone-thumbnail {
            transform: rotate(15deg) !important;
            -webkit-transform: rotate(15deg) !important;
            -ms-transform: rotate(15deg) !important;
            -o-transform: rotate(15deg) !important;
            -moz-transform: rotate(15deg) !important;
            bottom: 8px !important;
            right: 8px !important;
            width: 25% !important; /* Reduzido de 30% para 25% */
            max-width: 80px !important; /* Limita o tamanho máximo */
            height: auto !important;
            z-index: 10 !important;
            position: absolute !important;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        /* Remove o efeito de hover no mobile */
        .teste-card:hover .phone-thumbnail,
        .card-content:hover .phone-thumbnail,
        .mobile-version .teste-slide:hover .phone-thumbnail {
            transform: rotate(15deg) !important;
            -webkit-transform: rotate(15deg) !important;
            -ms-transform: rotate(15deg) !important;
            -o-transform: rotate(15deg) !important;
            -moz-transform: rotate(15deg) !important;
        }
        
        /* Aplica a inclinação para o phone-overlay */
        .phone-overlay {
            transform: rotate(15deg) !important;
            -webkit-transform: rotate(15deg) !important;
            -ms-transform: rotate(15deg) !important;
            -o-transform: rotate(15deg) !important;
            -moz-transform: rotate(15deg) !important;
        }
    }

    /* Mantendo a imagem da loja estática */
    .teste-card .teste-imagem {
        transition: none;
    }

    /* Removendo efeito hover do card */
    .teste-card {
        transition: none;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
        color: #fff;
        transition: color 0.3s ease;
        text-align: center;
        line-height: 1.4;
    }
    
    .nav-links a:hover {
        color: #9333EA;
    }

    .menu-mobile {
        display: block;
    }
}

/* Estilos para a seção de teste */
.teste-section {
    padding: 50px 0;
    background-color: #12022B;
    color: #fff;
    text-align: center;
}

/* Container dos cards */
.cards-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

/* Container da imagem com proporção 4:5 */
.image-container {
    position: relative;
    width: 100%;
    padding-top: 125%; /* Proporção 4:5 (5/4 = 1.25) */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 15px;
}

/* Estilo da imagem dentro do container */
.teste-imagem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Removendo a transição para manter estático */
}

/* Estilo da miniatura do celular */
.phone-thumbnail {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20%;
    height: auto;
    z-index: 10;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
}

/* Efeito hover no card - gira o celular (apenas desktop) */
@media (min-width: 481px) {
    .teste-card:hover .phone-thumbnail {
        transform: rotate(15deg);
    }
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .phone-thumbnail {
        width: 25%;
        bottom: 5px;
        right: 5px;
    }
}

/* Ajustes para mobile */
@media (max-width: 480px) {
    /* Apenas no mobile, aplica a inclinação e ajusta o tamanho */
    .teste-card .card-content .image-container .phone-thumbnail,
    .teste-card .image-container .phone-thumbnail,
    .mobile-version .teste-slide .card-content .image-container .phone-thumbnail,
    .phone-thumbnail {
        transform: rotate(15deg) !important;
        -webkit-transform: rotate(15deg) !important;
        -ms-transform: rotate(15deg) !important;
        -o-transform: rotate(15deg) !important;
        -moz-transform: rotate(15deg) !important;
        bottom: 8px !important;
        right: 8px !important;
        width: 25% !important; /* Reduzido de 30% para 25% */
        max-width: 80px !important; /* Limita o tamanho máximo */
        height: auto !important;
        z-index: 10 !important;
        position: absolute !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Remove o efeito de hover no mobile */
    .teste-card:hover .phone-thumbnail,
    .card-content:hover .phone-thumbnail,
    .mobile-version .teste-slide:hover .phone-thumbnail {
        transform: rotate(15deg) !important;
        -webkit-transform: rotate(15deg) !important;
        -ms-transform: rotate(15deg) !important;
        -o-transform: rotate(15deg) !important;
        -moz-transform: rotate(15deg) !important;
    }
    
    /* Aplica a inclinação para o phone-overlay */
    .phone-overlay {
        transform: rotate(15deg) !important;
        -webkit-transform: rotate(15deg) !important;
        -ms-transform: rotate(15deg) !important;
        -o-transform: rotate(15deg) !important;
        -moz-transform: rotate(15deg) !important;
    }
}

/* Mantendo a imagem da loja estática */
.teste-card .teste-imagem {
    transition: none;
}

/* Removendo efeito hover do card */
.teste-card {
    transition: none;
}

/* Exibe o valor parcelado em português (pt ou pt-BR) */
html[lang="pt"] .price[data-translate$="-parcelado"],
html[lang="pt-BR"] .price[data-translate$="-parcelado"] {
   display: block !important;
   font-size: 1.8rem !important;
   font-weight: 700 !important;
   margin: 0 0 5px 0 !important;
   color: #fff !important;
   line-height: 1.2 !important;
   opacity: 1 !important;
   visibility: visible !important;
}

/* Oculta o valor parcelado em outros idiomas */
html:not([lang="pt"]):not([lang="pt-BR"]) .price[data-translate$="-parcelado"] {
   display: none !important;
}

/* Estilos dos cards */
.teste-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.teste-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-text {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #9333EA;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    line-height: 1.3;
}

.card-text p {
    color: #fff;
    margin-top: auto;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .teste-card {
        margin: 0 10px;
    }
    
    .card-text {
        padding: 12px;
    }
    
    .card-text h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .card-text p {
        font-size: 0.9rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .teste-card {
        margin: 0 5px;
    }
    
    .card-text h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .card-text p {
        font-size: 0.85rem;
    }
}

.teste-card {
    background: #12022B;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 500px !important; /* Altura fixa para desktop */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 0;
    margin: 0;
    border: none;
}

.cards-container {
    align-items: stretch;
}

/* Estilos do carrossel movidos para carrossel-mobile.css */

.teste-card-content {
    padding: 20px;
    background: #1a0538;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.teste-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #9333EA;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.teste-card p {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Estilos para o carrossel mobile - movidos para carrossel-mobile.css */

/* Ajustes para mobile */
@media (max-width: 768px) {
    .cards-container {
        display: none; /* Esconde os cards em mobile */
    }
    
    /* Carrossel mobile é controlado pelo carrossel-mobile.css */

    .teste-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .teste-section .section-subtitle {
        font-size: 1rem;
        margin: 15px auto 30px;
        padding: 0 20px;
    }
    
    .teste-card {
        width: 100%;
        max-width: 400px;
        height: 500px;
        margin: 0 auto 30px;
    }
    
    .teste-card h3 {
        font-size: 1.3rem;
    }
    
    .teste-card p {
        font-size: 0.95rem;
    }
}

/* Seção 7 Passos */
.steps-section {
    padding: 100px 0 80px 0;
    background-color: #12022b; /* Mesma cor do cabeçalho */
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Ajuste de espaçamento entre 7 Passos e Exemplo de Lojas no desktop */
@media (min-width: 992px) {
    .steps-section {
        padding-bottom: 120px; /* Aumentando ainda mais o espaço abaixo da seção 7 Passos */
    }
    
    .shops-section {
        padding-top: 100px; /* Aumentando ainda mais o espaço acima da seção de lojas */
    }
}


/* Estilo para os itens de passo */
.step-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px 25px 25px 25px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    box-sizing: border-box;
    margin-top: 30px;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.4);
}

/* Ajuste para o número do passo */
.step-item .step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: #9333EA;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.5);
    z-index: 1;
}

/* Estilo para o título do passo */
.step-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #9333EA;
    margin: 15px 0 15px 0;
    padding: 0;
    min-height: auto;
    line-height: 1.4;
    text-align: center;
}

/* Ajuste para o texto do passo */
.step-item p {
    color: #d1c4e9;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


/* Estilos Padrão para Títulos de Seção */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #9333EA;
    text-align: center;
    margin: 0 0 40px 0;
    padding: 0 0 20px 0;
    position: relative;
    line-height: 1.2;
    text-transform: none;
    width: 100%;
    display: block;
}

/* Linha decorativa abaixo do título */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #9333EA;
    border-radius: 3px;
}


/* Responsividade para títulos */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 992px) {
    /* Estilos do menu móvel já definidos na seção principal */
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        top: -16px;
    }
}


.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.step-card, .step-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    box-sizing: border-box;
}

.step-card:hover, .step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.4);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: #9333EA;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.5);
    z-index: 1;
}

.step-card h3, .step-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #9333EA;
    margin: 10px 0 15px 0;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    padding-top: 15px;
}

.step-card p, .step-item p {
    color: #d1c4e9;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Linha conectando os passos */
.step-card:not(:last-child)::after,
.step-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #9333EA;
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Layout para desktop */
@media (min-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Centraliza o sétimo card */
    .steps-container:has(> :nth-child(7)) > :nth-child(7) {
        grid-column: 2;
    }
    
    /* Remove setas do último card de cada linha */
    .step-card:nth-child(3n)::after,
    .step-item:nth-child(3n)::after {
        display: none;
    }
}

/* Layout para tablets */
@media (max-width: 1199px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        padding: 0 15px;
        gap: 20px;
    }
    
    .step-item {
        margin-top: 25px;
    }
    
    .step-card:not(:last-child)::after,
    .step-item:not(:last-child)::after {
        display: none;
    }
    
    /* Centraliza o último card quando for ímpar */
    .steps-container:has(> :nth-child(odd):last-child) > :last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 10px auto 0;
    }
    /* Removido estilo específico para o último item */
}

/* Estilos para a seção de passos no mobile */
@media (max-width: 768px) {
    .steps-section {
        padding: 30px 0;
        width: 100%;
    }
    
    /* Ajustes específicos para os textos dos passos no mobile */
    .steps-section .step-item p {
        margin-bottom: 10px !important;
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        color: #d1c4e9 !important;
    }
    
    .steps-section .step-item h3 {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
        color: #9333EA !important;
    }
    
    .step-item .step-number {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
        top: 10px !important;
        left: 15px !important;
        right: auto !important;
        margin: 0 !important;
    }
    
    .steps-section .container {
        width: 100%;
        max-width: 500px;
        padding: 0 15px;
        margin: 0 auto;
    }
    
    .steps-container {
        padding: 0 5px;
        gap: 12px;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }
    
    .step-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px 15px 15px 60px !important;
        margin: 0 0 12px 0 !important;
        min-height: auto !important;
        height: auto !important;
        position: relative;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(147, 51, 234, 0.2);
        border-radius: 10px;
    }
    
    .step-item .step-number {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        background: #9333EA;
        border-radius: 50%;
        color: white;
    }
    
    .step-item h3 {
        margin-top: 0 !important;
        margin-bottom: 8px !important;
        font-size: 1rem !important;
    }
    
    /* Estilo movido para a media query principal */
    
    /* Garante consistência para todos os itens */
    .step-item h3 {
        color: #9333EA; /* Cor dos títulos conforme memória */
    }
    
    .step-card h3, .step-item h3 {
        font-size: 1.2rem;
        min-height: auto;
        padding-top: 10px;
    }
    
    /* Removido o ajuste específico para o card 7 */
    /* Todos os cards terão o mesmo estilo */
}

/* Seção Hero */
.hero {
    position: relative;
    padding: 80px 0 100px; /* Reduzido o padding-top de 140px para 80px */
    background-color: #12022b; /* Mesma cor do cabeçalho */
    color: #ffffff;
    text-align: center;
    margin-top: 0; /* Removido o margin-top de 120px */
}

.hero .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: block;
    padding-top: 180px; /* Aumentado o padding-top para descer mais o conteúdo */
}

.hero-text {
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #9333EA; /* Cor padrão dos títulos */
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: #9333EA; /* Mesma cor para manter a consistência */
    display: block;
    margin-top: 10px;
}

.hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.9;
}

/* Botão Personalizado */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(90deg, #b388ff 0%, #7c4dff 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.4);
}

/* Responsividade */
/* Ajustes de responsividade */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 95%;
    }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 30px; /* Reduzido o padding superior para subir o conteúdo */
        text-align: center; /* Centraliza o texto */
    }
    
    .hero-content {
        padding-top: 80px; /* Aumentado o padding-top para descer o conteúdo */
        display: flex;
        flex-direction: column;
        align-items: center; /* Centraliza horizontalmente */
        justify-content: center; /* Centraliza verticalmente */
    }
    
    .hero-text {
        max-width: 100%;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin: 0 auto 15px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .hero h1 .highlight {
        margin-top: 5px;
    }
    
    .hero p {
        font-size: 1.1rem; /* Aumentado de 1rem para melhor legibilidade */
        line-height: 1.6; /* Ajuste fino no line-height */
        margin-top: 12px; /* Ajuste fino no espaçamento superior */
        font-weight: 400; /* Peso da fonte ligeiramente mais forte */
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .hero {
        padding: 50px 0 20px; /* Reduzido o padding superior para subir o conteúdo */
    }
    
    .hero-content {
        padding-top: 60px; /* Ajustado o padding-top para telas menores */
    }
    
    .hero h1 {
        font-size: 1.6rem;
        padding: 0 10px;
        margin-bottom: 10px; /* Reduzido o espaçamento inferior do título */
    }
    
    .hero p {
        font-size: 1.05rem; /* Aumentado de 0.95rem para melhor legibilidade */
        max-width: 100%;
        padding: 0 10px;
        margin-top: 10px; /* Ajuste fino do espaçamento superior */
        line-height: 1.6; /* Ajuste fino no line-height */
        font-weight: 400; /* Peso da fonte ligeiramente mais forte */
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 50px 0 20px; /* Reduzido o padding superior para subir o conteúdo */
    }
    
    .hero-content {
        padding-top: 70px; /* Ajustado para descer mais o conteúdo */
    }
    
    .hero h1 {
        font-size: 1.8rem; /* Tamanho de fonte ligeiramente maior */
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 1.1rem; /* Aumentado de 1rem para melhor legibilidade */
        margin-top: 12px; /* Ajuste fino no espaçamento superior */
        line-height: 1.6; /* Ajuste fino no line-height */
        font-weight: 400; /* Peso da fonte ligeiramente mais forte */
    }
    
    .btn-primary {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Estilos para a mensagem de contato do WhatsApp */
.whatsapp-contact-container {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 800px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-contact-text {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.whatsapp-link {
    color: #25d366;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128c7e;
    text-decoration: underline;
}

/* Overlay do menu mobile */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Ajustes para o menu mobile em telas pequenas */
@media (max-width: 480px) {
    .nav-links {
        width: 90%;
        max-width: 280px;
    }
    
    .menu-mobile {
        right: 10px;
        top: 15px;
    }
}

.whatsapp-link::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.966-.273-.099-.471-.148-.67.15-.197.297-.767.963-.94 1.16-.174.196-.347.22-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.795-1.484-1.784-1.66-2.087-.174-.297-.018-.458.13-.605.136-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.578-.487-.5-.669-.508-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.078 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.87.118.571-.085 1.758-.719 2.005-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.345m-5.446 7.443h-.016a9.77 9.77 0 01-5.469-1.68l-.37-.236-3.744.982.998-3.648-.235-.375a9.796 9.796 0 01-1.503-5.26c.003-5.45 4.436-9.884 9.888-9.884a9.816 9.816 0 017.023 2.91 9.816 9.816 0 012.91 7.023c-.003 5.45-4.435 9.884-9.884 9.884'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-contact-container {
        margin: 0 auto 30px;
        padding: 12px 15px;
        border-radius: 25px;
    }
    
    .whatsapp-contact-text {
        font-size: 1rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .whatsapp-link::before {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-contact-text {
        font-size: 0.95rem;
    }
    
    .whatsapp-link {
        font-size: 1.05rem;
    }
}

/* Estilos para o carrossel mobile movidos para carrossel-mobile.css */

/* Estilos para os cards desktop */
.cards-container {
    display: none; /* Escondido por padrão */
}

/* Mostra apenas no desktop */
@media (min-width: 1025px) {
    .cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto 40px;
        padding: 0 15px;
    }
    
    .teste-card {
        background: #12022B;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        height: auto;
    }
    
    /* Estilos do carrossel movidos para carrossel-mobile.css */
}

/* Estilos responsivos */
@media (max-width: 768px) {
     .cards-container {
        display: none; /* Esconde os cards no mobile */
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
    
    .teste-card {
        height: 500px;
        max-width: 400px; /* Largura máxima aumentada */
        margin: 0 auto 30px; /* Centraliza e adiciona margem inferior */
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em desktop */
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .teste-card {
        height: 500px;
        max-width: 400px; /* Largura máxima aumentada */
        margin: 0 auto 30px; /* Centraliza e adiciona margem inferior */
    }
}
