@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

*{
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    list-style: none;
    border-collapse: collapse;
    text-decoration: none;
}

html{
    font-size: 62.5%;
}

body{
    font-size: 1.8rem;
    width: 100%;
    font-family: var(--fonte-paragrafos);
    background: #ffffff;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--fonte-titulos) !important;
}

:root{
    --cor-principal: #9152d9;
    --cor-principal-linear: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --cor-secundaria: #8de0a6;
    --cor-preto: #1f2937;
    --cor-branco: #fff;
    --cor-cinza: #4b5563;
    --fonte-titulos: "Manrope", sans-serif;
    --fonte-paragrafos: 'Montserrat', sans-serif;
}

.sucesso, .erro, .info{
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sucesso{
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--cor-branco);
}

.erro{
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--cor-branco);
}

.info{
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--cor-branco);
}

/* Container */
.container{
    width: 100%;
    padding: 2rem 0;
    min-height: 70vh;
    display: flex;
    flex-flow: column nowrap;
    gap: 4rem;
    align-items: center;
}

/* Breadcrumb */
.filtros-conta{
    width: 100%;
    padding: 2rem 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.filtros-conta>div{
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
    align-items: center;
}

.filtros-conta a{
    padding: 0.8rem 1.6rem;
    background: #ffffff;
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.4rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
}

.filtros-conta a:hover{
    transform: translateY(-2px);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: var(--cor-branco);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.filtros-conta p{
    color: #9ca3af;
    font-weight: 600;
}

/* Seção Principal */
.conta{
    width: 100%;
    padding: 2rem 0;
}

.conta>div{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    gap: 6rem;
    justify-content: center;
    align-items: flex-start;
}

/* Imagem do Telefone */
.imagem a{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.imagem a:hover{
    transform: translateY(-8px);
}

.imagem a>div{
    position: relative;
    filter: drop-shadow(0 20px 50px rgba(139, 92, 246, 0.25));
}

.imagem a>div img:nth-child(1){
    width: 32rem;
}

.imagem a>div img:nth-child(2){
    width: 28.3rem;
    position: absolute;
    top: 2rem;
    left: 1.85rem;
    z-index: -1;
    border-radius: 2rem;
}

.imagem a>div img:nth-of-type(3){
    width: 48rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    opacity: 0.7;
}

.nacionalidade{
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    z-index: 10;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 6px 20px rgba(139, 92, 246, 0.5),
        0 0 0 3px rgba(255, 255, 255, 1);
    transition: transform 0.3s ease;
}

.nacionalidade:hover{
    transform: scale(1.1);
}

.nacionalidade img{
    width: 3.2rem !important;
}

/* Detalhes - Layout Aberto SEM CARD */
.detalhes{
    max-width: 750px;
    display: flex;
    flex-flow: column nowrap;
    gap: 3rem;
}

/* Badges de Confiança no Topo */
.trust-badges{
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge-trust{
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #ffffff;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: #059669;
    font-weight: 700;
    font-size: 1.4rem;
}

.badge-trust i{
    font-size: 1.8rem;
}

/* Título e Visualizar */
.detalhes>div:nth-of-type(1){
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 2.5rem;
    border-bottom: 3px solid rgba(139, 92, 246, 0.1);
}

.detalhes h1{
    word-break: break-all;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.btn-visualizar{
    display: inline-flex !important;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem !important;
    background: #ffffff !important;
    color: #8b5cf6 !important;
    font-weight: 700 !important;
    font-size: 1.6rem !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(139, 92, 246, 0.2) !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15) !important;
}

.btn-visualizar:hover{
    transform: translateY(-3px) !important;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
    color: var(--cor-branco) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35) !important;
}

/* Stats da Conta */
.conta-stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.stat-item i{
    font-size: 3rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item div{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-label{
    font-size: 1.2rem;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
}

.stat-value{
    font-size: 1.8rem;
    color: var(--cor-preto);
    font-weight: 800;
}

/* Preço Destaque */
.preco-destaque{
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 6.5rem;
    font-weight: 900;
    line-height: 1;
    padding-bottom: 2rem;
    border-bottom: 3px solid rgba(139, 92, 246, 0.15);
}

/* Box de Descrição */
.descricao-box{
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.08);
}

.descricao-box h3{
    font-size: 2rem;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.descricao-box h3 i{
    font-size: 2.2rem;
}

.descricao-box p{
    font-size: 1.8rem;
    line-height: 2;
    color: var(--cor-cinza);
    text-align: justify;
}

/* Box de Verificação */
.verificacao-box{
    display: flex;
    gap: 2rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
}

.verificacao-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.verificacao-icon i{
    font-size: 3rem;
    color: var(--cor-branco);
}

.verificacao-box strong{
    font-size: 2rem;
    color: #059669;
    font-weight: 800;
    display: block;
    margin-bottom: 0.8rem;
}

.verificacao-box p{
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--cor-cinza);
}

.detalhes>div:nth-of-type(1) a{
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
}

.detalhes>div:nth-of-type(1) a:hover{
    transform: translateY(-2px);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: var(--cor-branco);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.detalhes div:nth-of-type(1) i{
    font-size: 1.6rem;
}

/* Remover estilos antigos não usados */

/* Botões */
div.botoes-detalhes{
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}

.botoes-detalhes a, .detalhes>a{
    padding: 1.8rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
}

.botoes-detalhes a{
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: var(--cor-branco);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.botoes-detalhes a:hover{
    transform: translateY(-4px);
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.detalhes>a{
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--cor-branco);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 40px rgba(16, 185, 129, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.detalhes>a:hover{
    transform: translateY(-4px);
    box-shadow: 
        0 20px 60px rgba(16, 185, 129, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.botoes-detalhes i, .detalhes>a i{
    font-size: 2rem;
}

.nao-disponivel{
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--cor-branco);
    font-weight: 600;
    text-align: center;
    border-radius: 16px;
    padding: 2.5rem;
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

/* SEÇÃO DE BENEFÍCIOS */
.beneficios-section{
    width: 100%;
    padding: 8rem 0;
    background: #ffffff;
}

.beneficios-container{
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.beneficios-container h2{
    font-size: 4.2rem;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5rem;
}

.beneficios-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.beneficio-item{
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
}

.beneficio-item:hover{
    transform: translateY(-6px);
    box-shadow: 
        0 15px 50px rgba(139, 92, 246, 0.15),
        0 0 0 2px rgba(139, 92, 246, 0.2);
}

.beneficio-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.beneficio-icon i{
    font-size: 2.8rem;
    color: var(--cor-branco);
}

.beneficio-content h4{
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--cor-preto);
    margin-bottom: 0.8rem;
}

.beneficio-content p{
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--cor-cinza);
}

/* Garantias - DESIGN REFORMULADO */
.garantias{
    width: 100%;
    padding: 10rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.garantias::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #8b5cf6 30%, #ec4899 70%, transparent 100%);
}

.garantias>div{
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.garantias>div::before{
    content: 'Por que escolher a ContasKing?';
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -2rem;
}

.garantias>div>div{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.garantia{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding: 5rem 3.5rem;
    background: #ffffff;
    border-radius: 30px;
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 50px rgba(139, 92, 246, 0.12),
        0 5px 20px rgba(236, 72, 153, 0.08);
}

.garantia::before{
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.garantia:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 70px rgba(139, 92, 246, 0.2),
        0 10px 30px rgba(236, 72, 153, 0.15);
}

.garantia:hover::before{
    opacity: 1;
}

.garantia::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 10px 10px 0 0;
    transition: width 0.4s ease;
}

.garantia:hover::after{
    width: 80%;
}

.garantia-icon-wrapper{
    position: relative;
    width: 12rem;
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.garantia-icon-wrapper::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring{
    0%, 100%{
        transform: scale(1);
        opacity: 1;
    }
    50%{
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.garantia-icon-wrapper::after{
    content: '';
    position: absolute;
    inset: 1rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.garantia img{
    width: 7rem;
    filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(255, 255, 255, 0.3));
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.garantia:hover img{
    transform: scale(1.15) rotate(5deg);
}

.garantia>div{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.garantia strong{
    font-size: 2.4rem;
    color: var(--cor-preto);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.garantia p{
    line-height: 1.9;
    color: var(--cor-cinza);
    font-size: 1.6rem;
    font-weight: 500;
}

.garantia-number{
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cor-branco);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Produtos Relacionados */
.produtos-relacionados{
    width: 100%;
    padding: 8rem 0;
    display: flex;
    flex-flow: column nowrap;
    gap: 5rem;
    align-items: center;
}

.produtos-relacionados>h1{
    font-size: 4.5rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.produtos-relacionados>div{
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4rem;
}

.produto-relacionado{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 40px rgba(139, 92, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.produto-relacionado:hover{
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.2),
        0 0 0 2px rgba(139, 92, 246, 0.2);
}

.produto-relacionado>div{
    position: relative;
    filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.15));
}

.produto-relacionado>div img:nth-child(1){
    width: 18rem;
    transition: transform 0.3s ease;
}

.produto-relacionado:hover>div img:nth-child(1){
    transform: scale(1.08);
}

.produto-relacionado>div img:nth-child(2){
    width: 15.9rem;
    position: absolute;
    top: 1.45rem;
    left: 1.05rem;
    z-index: -1;
}

.produto-relacionado>div img:nth-of-type(3){
    width: 28rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    opacity: 0.6;
}

.produto-relacionado h2{
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-preto);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.produto-relacionado h2:last-of-type{
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
}

.produto-relacionado p{
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 2.2rem;
}

/* Instruções */
.container-instrucoes{
    width: 100%;
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.container-instrucoes::before{
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

.container-instrucoes>div{
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.container-instrucoes h2{
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.instrucoes{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    width: 100%;
}

.instrucao{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 3.5rem 2.5rem;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.15);
    color: var(--cor-preto);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.08);
}

.instrucao:hover{
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.instrucao-icon-wrapper{
    position: relative;
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.instrucao img{
    width: 5rem;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

.instrucao p{
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--cor-preto);
}

/* Vale a Pena */
.container-vale-a-pena{
    width: 100%;
    padding: 8rem 2rem;
}

.container-vale-a-pena>div{
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    box-shadow: 
        0 20px 70px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.container-vale-a-pena img{
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25);
}

.container-vale-a-pena>div>div{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.container-vale-a-pena h2{
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.container-vale-a-pena p{
    color: var(--cor-cinza);
    line-height: 1.9;
    font-size: 1.7rem;
}

.container-vale-a-pena p:nth-of-type(1){
    text-align: justify;
}

.container-vale-a-pena p i{
    color: #10b981;
    font-size: 2rem;
    margin-right: 1rem;
}

/* ========== FOOTER ========== */
.footer-cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--cor-branco);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    justify-content: center;
}

.btn-primary{
    background: var(--cor-branco);
    color: #8b5cf6;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-primary:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
}

.footer-main {
    padding: 6rem 0 4rem;
    background: #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cor-preto);
}

.footer-logo i {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
}

.footer-brand p {
    font-size: 1.6rem;
    color: #6b7280;
    line-height: 1.6;
}

.footer-links h3,
.footer-categories h3,
.footer-contact h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-preto);
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links ul,
.footer-categories ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a,
.footer-categories a {
    color: #6b7280;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-categories a:hover {
    color: #8b5cf6;
    transform: translateX(5px);
}

.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 1.4rem;
    color: var(--cor-preto);
    font-weight: 500;
    margin: 0;
}

.footer-social {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid rgba(139, 92, 246, 0.08);
}

.footer-social .footer-content {
    grid-template-columns: 1fr 1fr;
}

.social-links h3,
.newsletter h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-preto);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: #8b5cf6;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: var(--cor-branco);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.newsletter p {
    font-size: 1.4rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: var(--cor-preto);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.newsletter-form button {
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border: none;
    border-radius: 12px;
    color: var(--cor-branco);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    min-width: 80px;
}

.footer-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-stats .stat-label {
    font-size: 1.2rem;
    color: #9ca3af;
    font-weight: 500;
}

.footer-bottom {
    padding: 2rem 0;
    background: #f1f5f9;
    border-top: 1px solid rgba(139, 92, 246, 0.08);
}

.footer-bottom .footer-content{
    grid-template-columns: 1fr;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright p {
    font-size: 1.4rem;
    color: #9ca3af;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #6b7280;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #8b5cf6;
}

/* Responsividade */
@media(max-width: 1100px){
    .container-vale-a-pena>div{
        grid-template-columns: 1fr;
    }
}

@media(max-width: 1024px){
    .garantias>div>div{
        grid-template-columns: 1fr;
    }
    
    .garantias>div::before{
        font-size: 3.5rem;
    }
    
    .instrucoes{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 1024px){
    .beneficios-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px){
    .detalhes h1{
        font-size: 3.5rem;
    }
    
    .preco-destaque{
        font-size: 5.5rem;
    }
    
    .conta-stats{
        grid-template-columns: 1fr;
    }
    
    .trust-badges{
        justify-content: center;
    }
    
    .beneficios-grid{
        grid-template-columns: 1fr;
    }
    
    .produtos-relacionados>div{
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social .footer-content {
        grid-template-columns: 1fr;
    }
    
    .social-icons{
        justify-content: center;
    }
    
    .footer-stats{
        justify-content: center;
    }
    
    /* Ajustar largura dos botões para tablets */
    .btn-primary, .btn-secondary, .botoes-detalhes a, .detalhes>a {
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
    }
}

@media(max-width: 480px){
    /* Ajustar largura dos botões para mobile */
    .btn-primary, .btn-secondary, .botoes-detalhes a, .detalhes>a {
        width: 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
    }
}

@media(max-width: 660px){
    .garantia{
        padding: 4rem 2.5rem;
    }
    
    .garantia-icon-wrapper{
        width: 10rem;
        height: 10rem;
    }
    
    .garantia img{
        width: 6rem;
    }
    
    .garantia strong{
        font-size: 2rem;
    }
    
    .garantias>div::before{
        font-size: 3rem;
    }
    
    .container-vale-a-pena img{
        width: 100%;
    }
    
    .descricao-box,
    .verificacao-box{
        padding: 2.5rem 2rem;
    }
    
    .beneficio-item{
        padding: 2.5rem 2rem;
    }
}

@media(max-width: 605px){
    html{
        font-size: 55%;
    }
    
    .conta>div{
        gap: 4rem;
    }
    
    .imagem a>div img:nth-child(1){
        width: 28rem;
    }
    
    .imagem a>div img:nth-child(2){
        width: 24.7rem;
    }
}

@media(max-width: 600px){
    .instrucoes{
        grid-template-columns: 1fr;
    }
}

@media(max-width: 505px){
    html{
        font-size: 50%;
    }
    
    .produtos-relacionados>h1{
        font-size: 3.5rem;
    }
    
    .container-instrucoes h2{
        font-size: 3rem;
    }
    
    .detalhes p{
        padding: 2rem;
    }
}

@media(max-width: 370px){
    html{
        font-size: 45%;
    }
}
