@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&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: var(--cor-branco);
}

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

:root{
    /* --cor-principal: #a78bfa; */
    --cor-principal: #9152d9;
    /* --cor-principal-linear: linear-gradient(90deg, rgba(167,139,250,1) 26%, rgba(141,103,255,1) 77%); */
    --cor-principal-linear: linear-gradient(221.26deg, #c548ab -3.4%, #635bff 101%);
    --cor-secundaria: #8de0a6;
    --cor-preto: black;
    --cor-branco: #fff;
    --cor-cinza: #343746;
    /* --fonte-titulos: 'Poppins', sans-serif; */
    --fonte-titulos: "Manrope", sans-serif;
    --fonte-paragrafos: 'Montserrat', sans-serif;
}

.sucesso, .erro, .info{
    border-radius: 1rem;
    padding: 1rem 2rem;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.sucesso{
    color: var(--cor-preto);
    background: #2ff15d;
}

.erro{
    color: var(--cor-branco);
    background: #e71717;
}

.info{
    color: var(--cor-preto);
    background: #0aa2e9;
}

/* Container Home - Início */

.container{
    width: 100%;
    min-height: 70vh;
}

.titulo-contas{
    width: 100%;
    padding: 8rem 0 10rem;
    background: linear-gradient(135deg, #6b21a8 0%, #7e22ce 30%, #a21caf 60%, #be185d 100%);
    position: relative;
    overflow: hidden;
}

.titulo-contas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.titulo-contas::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 1;
}

.titulo-contas-content{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    color: var(--cor-branco);
    position: relative;
    z-index: 2;
}

/* Badge de Destaque */
.badge-destaque {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.15);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.badge-destaque i {
    font-size: 2rem;
    color: #fbbf24;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px #fbbf24);
    }
    50% {
        filter: drop-shadow(0 0 15px #fbbf24);
    }
}

.badge-destaque span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-branco);
}

/* Stats Inline */
.stats-inline {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.stat-inline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-inline-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.stat-inline-item i {
    font-size: 1.8rem;
    color: #10b981;
}

.stat-inline-item span {
    font-size: 1.4rem;
    color: var(--cor-branco);
    font-weight: 500;
}

.stat-inline-item strong {
    font-weight: 800;
    color: #fbbf24;
}

.filtro-contas{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}


.filtro-contas a{
    padding: 1.4rem 2.8rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #6d28d9;
    font-weight: 700 !important;
    border-radius: 9999px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.6) !important;
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    animation: pulse-btn 2s infinite !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15), 0 0 0 1px rgba(255,255,255,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
    }
}

.filtro-contas a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.8s ease;
    border-radius: 9999px;
    z-index: 1;
}

.filtro-contas a:hover::before {
    left: 100%;
}

.filtro-contas a:hover{
    transform: translateY(-6px) scale(1.05) !important;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(255,255,255,0.3), inset 0 1px 0 rgba(255,255,255,0.9);
    color: #4c1d95;
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    animation: none !important;
}

.filtro-contas a:active {
    transform: translateY(-2px) scale(0.98) !important;
}




















    min-width: 320px;
    max-width: 320px;
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
        box-shadow: 
            0 8px 32px rgba(0,0,0,0.12),
            0 0 0 1px rgba(255,255,255,0.1),
            inset 0 1px 0 rgba(255,255,255,0.6);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 12px 40px rgba(139, 92, 246, 0.15),
            0 0 0 1px rgba(255,255,255,0.2),
            inset 0 1px 0 rgba(255,255,255,0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 
            0 8px 32px rgba(0,0,0,0.12),
            0 0 0 1px rgba(255,255,255,0.1),
            inset 0 1px 0 rgba(255,255,255,0.6);
    }
}

.filtro-contas a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.8s ease;
    border-radius: 9999px;
    z-index: 1;
}

.filtro-contas a:hover::before {
    left: 100%;
}

.filtro-contas a:hover{
    transform: translateY(-6px) scale(1.05) !important;
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.25),
        0 0 0 1px rgba(255,255,255,0.3),
        inset 0 1px 0 rgba(255,255,255,0.9);
    color: #4c1d95;
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    animation: none !important;
}

.filtro-contas a:active {
    transform: translateY(-2px) scale(0.98);
}

.titulo-contas>div>span{
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    padding: 1.2rem 3rem;
    color: var(--cor-branco);
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.4rem;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

.titulo-contas h1{
    font-size: 4.5rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.titulo-contas h1>span{
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fb7185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    display: inline-block;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.8));
    }
}

.contas{
    width: 100%;
    margin: 0 auto;
    padding: 8rem 0;
    background: 
        linear-gradient(to bottom, #ffffff 0%, #faf5ff 50%, #fdf2f8 100%);
    position: relative;
}

.contas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contas>div{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 5rem;
    justify-items: center;
    align-items: start;
    position: relative;
    z-index: 1;
}

.conta{
    display: flex;
    width: 100%;
    max-width: 350px;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    color: var(--cor-cinza);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--cor-branco);
    padding: 3rem 2.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(139, 92, 246, 0.15),
        0 0 0 1px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.conta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.conta:hover::before{
    transform: scaleX(1);
}

.conta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: var(--cor-branco);
    z-index: 0;
}

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

.conta > * {
    position: relative;
    z-index: 10;
}

/* Badge Verificada */
.badge-verified {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 100;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-verified i {
    font-size: 1.2rem;
    color: var(--cor-branco);
}

.badge-verified span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cor-branco);
}

/* Container do Telefone */
.phone-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.conta h2{
    font-size: 1.8rem;
    white-space: nowrap;
    overflow: hidden; 
    text-overflow: ellipsis;
    text-align: center;
    width: 100%;
    color: var(--cor-preto);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Conta Info */
.conta-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
}

.seguidores-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

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

.seguidores-badge span {
    font-size: 1.4rem;
    color: #6b7280;
    font-weight: 600;
}

.conta:hover .seguidores-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border-color: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

/* Container de Preço */
.preco-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 16px;
    width: 100%;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.preco-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preco-valor {
    font-weight: 900;
    font-size: 3.2rem;
    margin: 0;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conta:hover .preco-container {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-color: rgba(139, 92, 246, 0.2);
    transform: scale(1.02);
}

/* Botão Ver Conta */
.btn-ver-conta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    padding: 1.4rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: var(--cor-branco);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-ver-conta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-ver-conta:hover::before {
    left: 100%;
}

.btn-ver-conta i {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.conta:hover .btn-ver-conta {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.conta:hover .btn-ver-conta i {
    transform: translateX(5px);
}

.phone-container img:nth-child(1){
    width: 20rem;
    z-index: 100;
    filter: drop-shadow(0 20px 50px rgba(139, 92, 246, 0.3));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-container img:nth-child(2){
    width: 17.3rem;
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    border-radius: 10px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.phone-container img:nth-of-type(3){
    width: 30rem;
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.nacionalidade{
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    position: absolute;
    bottom: 0.5rem;
    right: 8%;
    z-index: 101;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.5),
        0 0 0 3px var(--cor-branco);
    border: none;
    transition: all 0.4s ease;
}

.nacionalidade img{
    width: 2.4rem !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    filter: none !important;
}

.conta:hover{
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 70px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.2);
}

.conta:hover .phone-container img:nth-child(1) {
    transform: scale(1.08);
    filter: drop-shadow(0 25px 60px rgba(139, 92, 246, 0.4));
}

.conta:hover .phone-container img:nth-child(2) {
    transform: translateX(-50%) scale(1.08);
}

.conta:hover .nacionalidade {
    transform: scale(1.1);
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.6),
        0 0 0 3px var(--cor-branco);
}

.paginacao-contas{
    padding: 4rem 0;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.paginacao-contas a{
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: var(--cor-branco);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    min-width: 45px;
    text-align: center;
}

.paginacao-contas a:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.nao-encontrado{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    height: auto;
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 20px;
    border: 2px dashed rgba(139, 92, 246, 0.3);
}

.nao-encontrado h1 {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.7;
    word-spacing: 0.3em;
    letter-spacing: 0.01em;
}

/* Container Home - Fim */

@media(max-width: 1320px){
    .contas>div{
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 3rem;
    }
}

@media(max-width: 768px){
    .titulo-contas{
        padding: 4rem 0;
    }

    .titulo-contas h1{
        font-size: 2.8rem;
    }

    .filtro-contas{
        gap: 1.5rem;
    }

    .filtro-contas a{
        padding: 1rem 1.8rem;
        font-size: 1.4rem;
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
    }

    .btn-ver-conta {
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
    }

    .contas>div{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 95%;
    }

    .conta{
        max-width: 100%;
    }

    .nao-encontrado h1{
        font-size: 2.2rem;
    }
}

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

    .titulo-contas h1{
        font-size: 2.5rem;
    }

    .filtro-contas a{
        width: 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
    }

    .btn-ver-conta {
        width: 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
    }

    .conta>div img:nth-child(1){
        width: 16rem;
    }

    .conta>div img:nth-child(2){
        width: 13.8rem;
    }
}

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

/* ========== FOOTER MODERNO ========== */
.container-footer {
    background: #ffffff;
    color: var(--cor-preto);
    position: relative;
    overflow: hidden;
}

.container-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b5cf6, #ec4899, transparent);
}

/* Seção CTA do Footer */
.footer-cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.cta-content h2 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--cor-branco);
    margin-bottom: 1.5rem;
    font-family: var(--fonte-titulos);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.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-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    padding: 1.4rem 2.8rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(0.98);
}

/* Conteúdo Principal do Footer */
.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;
    align-items: start;
}

/* Logo e Descrição */
.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);
    font-family: var(--fonte-titulos);
}

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

.footer-brand p {
    font-size: 1.6rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: 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%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--fonte-titulos);
}

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

/* Links Úteis e Categorias */
.footer-links,
.footer-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-links ul,
.footer-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li,
.footer-categories li {
    margin: 0;
}

.footer-links a,
.footer-categories a {
    color: #4b5563;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.footer-links a:hover,
.footer-categories a:hover {
    color: var(--cor-preto);
    transform: translateX(8px);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contato */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-contact h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-preto);
    margin-bottom: 1rem;
    font-family: var(--fonte-titulos);
}

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

.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);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

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

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

.contact-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-social .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.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: #a1a1aa;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: var(--cor-branco);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.social-link i {
    position: relative;
    z-index: 2;
}

.newsletter p {
    font-size: 1.4rem;
    color: #a1a1aa;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.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: #a1a1aa;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 5rem;
}

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

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-copyright p {
    font-size: 1.4rem;
    color: #a1a1aa;
    margin: 0;
}

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

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

.footer-legal a:hover {
    color: var(--cor-preto);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-stats {
        justify-content: center;
    }

    .footer-social .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 3rem;
    }

    .cta-content p {
        font-size: 1.6rem;
    }

    .social-icons {
        justify-content: center;
    }
}