/* =====================================================
   RESET GLOBAL
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ========================= FUNDO NEON ========================= */ 
#neonParticles { 
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed; 
    inset: 0; 
    z-index: -1; 
    background: 
    radial-gradient(circle at top, #0b0f2a, #05071a); 
}

/* =====================================================
   BASE
===================================================== */
body {
    background: #0b0f2a;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }
}

h2 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.6rem;
    }
}

/* =====================================================
   SECTIONS GERAIS
===================================================== */
section {
    padding: 120px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    section {
        padding: 100px 16px;
    }
}

#site-loader {
    position: fixed;
    inset: 0;
    background: #05071a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .6s ease, visibility .6s ease;
}

#site-loader img {
    width: 120px;
    margin-bottom: 15px;
    animation: pulse 1.6s infinite;
}

#site-loader span {
    color: #ff2fb3;
    font-size: 14px;
    letter-spacing: 1px;
}

#site-loader.hide {
    opacity: 0;
    visibility: hidden;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: .7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: .7; }
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background .4s ease, box-shadow .4s ease;
}

.header.scrolled {
    background: rgba(5, 7, 26, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 25px rgba(0,0,0,.6);
}

/* CONTAINER */
.header-container {
    max-width: 1280px;
    margin: 0 auto;
    height: 96px;
    padding: 0 20px;

    display: grid;
    grid-template-columns: auto auto auto;
    gap: 28px;
    align-items: center;
}

/* LOGO */
.logo {
    margin-left: 82px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 68px;
    transition: transform .3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* MENU CENTRAL */
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
}

.menu a {
    position: relative;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-decoration: none;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: .3px;

    padding: 6px 0;
    transition: color .3s ease;
}


.menu a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff2fb3, #8a2be2);
    transition: width .3s ease, left .3s ease;
}

.menu a:hover {
    color: #ff2fb3;
}

.menu a:hover::after {
    width: 100%;
    left: 0;
}

/* CTA */
.cta {
    display: flex;
    align-items: center;
}

.btn-assine {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;

    background: linear-gradient(45deg, #ff2fb3, #8a2be2);
    box-shadow:
        0 0 10px rgba(255,47,179,.7),
        0 0 20px rgba(138,43,226,.7);

    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-assine img {
    width: 20px;
}

.btn-assine:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 20px rgba(255,47,179,1),
        0 0 40px rgba(138,43,226,1);
}

@media (max-width: 900px) {
    .header-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .logo {
        margin-left: 0px;
    }

    .menu,
    .cta {
        display: none;
    }
}

/* HEADER SCROLL BEHAVIOR */
.header.hide {
    transform: translateY(-100%);
    transition: transform .35s ease;
}

.header {
    transition:
        background .4s ease,
        box-shadow .4s ease,
        transform .35s ease;
}

/* =====================================================
   HERO
===================================================== */
#hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 80px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    background-image:
        linear-gradient(
            90deg,
            rgba(5,3,15,0.9) 0%,
            rgba(11,6,31,0.85) 45%,
            rgba(11,6,31,0.4) 70%,
            rgba(11,6,31,0.1) 100%
        ),
        url("../img/hero-image.png"); /* SUA IMAGEM */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay extra para contraste */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at left,
        rgba(0,0,0,0.45),
        transparent 60%
    );
    z-index: 1;
}

/* Conteúdo */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    text-align: left;
}

#hero h1 {
    font-size: 48px;
    font-weight: 800px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    #hero {
        padding: 140px 20px 80px;
        justify-content: center;

        background-image:
            linear-gradient(
                180deg,
                rgba(5,3,15,0.9) 0%,
                rgba(11,6,31,0.85) 50%,
                rgba(11,6,31,0.9) 100%
            ),
            url("../img/hero-image-mb.png");
        background-size: cover;       /* cobre toda a área */
        background-position: right;   /* foca no canto direito */
        background-repeat: no-repeat;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    #hero h1 {
        font-size: 32px;
    }

    #hero p {
        font-size: 16px;
    }
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 40px;
    background: linear-gradient(45deg, #ff2fb3, #8a2be2);
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255,47,179,.8),
                0 0 20px rgba(138,43,226,.8);
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,47,179,1),
                0 0 40px rgba(138,43,226,1);
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 32px;
    }

    #hero p {
        font-size: 16px;
    }
}

/* =====================================================
   BENEFÍCIOS
===================================================== */

#beneficios {
    padding-top: 40px;
    padding-bottom: 20px;
}

.beneficios-section {
    position: relative;
    padding: 100px 40px;
}

.beneficios-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.beneficios-container h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 70px;
}

.beneficios-container h2 span {
    color: #ff2fb3;
}

/* GRID */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

/* CARD */
.beneficio-item {
    background: #1a1340;
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid #ff2fb3;
}

/* HOVER */
.beneficio-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 25px rgba(138, 43, 226, 0.45),
        0 0 40px rgba(0, 255, 255, 0.25);
}

.beneficio-item p {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.5;
}

/* SVG NEON */
.beneficio-item svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: #ff2fb3;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter:
        drop-shadow(0 0 6px rgba(255,47,179,0.8))
        drop-shadow(0 0 14px rgba(138,43,226,0.6));
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .beneficio-item {
        padding: 18px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .beneficio-item svg {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
        flex-shrink: 0;
    }

    .beneficio-item p {
        font-size: 12.5px;
        line-height: 1.35;
        max-width: 110px;
        margin: 0;
        word-break: break-word;
    }
}

/* =====================================================
   PLANOS
===================================================== */
#planos {
    text-align: center;
    padding-top: 90px;
    color: #ffffff;
}

#planos h2 {
    max-width: 880px; 
    margin: 0 auto 18px;
    text-align: center;
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #ffffff;
    margin-bottom: 10px;
}

#planos h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    margin: 16px auto 0;
    background: linear-gradient(
        90deg,
        transparent,
        #ff2fb3,
        transparent
    );
    border-radius: 20px;
    opacity: 0.75;
}

@media (max-width: 768px) {
    #planos h2 {
        font-size: 26px;
        max-width: 600px;
    }
}

.plano {
    color: #0b0f2a;
}

.planos-sub {
    position: relative;
    max-width: 900px;
    margin: 0 auto 15px;
    padding: 0 60px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.planos-sub span {
    color: #ff2fb3;
    font-weight: 600;
}

/* Wrapper */
.planos-wrapper {
    overflow: hidden;
}

.planos-swipe-area {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    touch-action: pan-y;
    z-index: 20;
}

/* Lista */
.planos {
    display: flex;
    gap: 24px;
    padding: 40px 60px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.planos-indicadores {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.planos-indicadores button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: transform .3s ease, background .3s ease;
}

.planos-indicadores button.active {
    background: #ff2fb3;
    transform: scale(1.4);
}

/* =====================================================
   CARD DE PLANO
===================================================== */
.plano {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    border: 2px solid #ddd;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.plano h3 {
    font-size: 32px;
    color: #0b1aa3;
}

.preco {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
}

.plano small {
    color: #666;
}

.plano ul {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.plano ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.plano ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0b1aa3;
    font-weight: bold;
}

/* Hover card */
.plano:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

/* =====================================================
   PLANO DESTAQUE (NEON)
===================================================== */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 10px #ff2fb3, 0 0 20px #8a2be2;
    }
    50% {
        box-shadow: 0 0 20px #ff2fb3, 0 0 40px #8a2be2;
    }
    100% {
        box-shadow: 0 0 10px #ff2fb3, 0 0 20px #8a2be2;
    }
}

.plano.destaque {
    border: 2px solid #ff2fb3;
    animation: neonPulse 2.5s infinite;
    background: linear-gradient(180deg, #ffffff, #f7f0ff);
}

/* Tag destaque */
.tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, #ff2fb3, #8a2be2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* =====================================================
   BOTÕES
===================================================== */
.btn {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(45deg, #ff2fb3, #8a2be2);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    opacity: 0.85;
}

/* Botão contratar */
.btn-contratar {
    display: block;
    margin-top: 20px;
    padding: 15px;
    border-radius: 40px;
    background: linear-gradient(45deg, #ff2fb3, #8a2be2);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255,47,179,.8),
                0 0 20px rgba(138,43,226,.8);
}

.btn-contratar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,47,179,1),
                0 0 40px rgba(138,43,226,1);
}

/* =====================================================
   SETAS SLIDER
===================================================== */
.seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0b1aa3;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
    opacity: 0.9;
    box-shadow: 0 0 15px rgba(138,43,226,.8);
}

.seta:hover {
    box-shadow: 0 0 30px rgba(255,47,179,1);
}

.seta.esquerda { left: 5px; }
.seta.direita  { right: 5px; }

.seta:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* =====================================================
   SOBRE
===================================================== */

.sobre-section {
    padding-top: 0px;
    padding-bottom: 100px;
}

/* HEADER */
.sobre-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* TAG */
.sobre-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 18px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    font-size: 14px;
}

.sobre-descricao {
    font-size: 18px;
    line-height: 1.65;
    opacity: 0.92;
    max-width: 640px;
    margin-bottom: 16px;
}

.sobre-descricao.destaque {
    font-weight: 600;
    color: #ffffff;
}
.sobre-lista {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin: 28px 0 35px;
    padding: 0;
}

.sobre-lista li {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 15px;
    font-weight: 600;
    color: #eaeaea;

    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.35);
    padding: 9px 16px;
    border-radius: 999px;
}

/* CHECK VERDE NEON */
.sobre-lista li::before {
    content: "✔";
    color: #00ff9d;
    font-size: 14px;
    text-shadow: 0 0 6px rgba(0, 255, 157, 0.9);
}

/* BOTÃO */
.btn-sobre {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;

    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;

    background: linear-gradient(45deg, #ff2fb3, #8a2be2);
    box-shadow:
        0 0 15px rgba(255,47,179,.7),
        0 0 30px rgba(138,43,226,.7);

    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-sobre img {
    width: 20px;
}

.btn-sobre:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 0 25px rgba(255,47,179,1),
        0 0 45px rgba(138,43,226,1);
}

/* MAPA */
.sobre-mapa .mapa-card {
    background: #1a1340;
    border-radius: 22px;
    padding: 30px;
    border: 2px solid #ff2fb3;
    box-shadow:
        0 0 25px rgba(138,43,226,.4);
    text-align: center;
}

.mapa-titulo {
    font-size: 12px;
    color: #ff2fb3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mapa-card h3 {
    margin: 12px 0 15px;
    font-size: 22px;
}

.mapa-card p {
    font-size: 15px;
    opacity: 0.9;
}

/* VISUAL DO MAPA */
.mapa-visual {
    position: relative;
    margin-top: 25px;
}

.mapa-visual img {
    width: 100%;
    border-radius: 16px;
    opacity: 0.9;
}

/* PING ANIMADO */
.mapa-ping {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #ff2fb3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px #ff2fb3;
}

.mapa-ping::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid #ff2fb3;
    animation: ping 1.6s infinite;
}

/* CTA DO MAPA */
.mapa-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

@keyframes ping {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .sobre-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sobre-descricao {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-lista {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 12px 14px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-lista li {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 8px 10px;
        font-size: 14px;
        white-space: normal;
    }

    .sobre-texto h2 {
        font-size: 30px;
        max-width: 100%;
        letter-spacing: 0;
    }
}

/* =====================================================
   ICONS FLUTUANTE
===================================================== */
.social-float {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 14px;
    z-index: 999999999;
    pointer-events: auto;
}


/* WHATSAPP */
.whatsapp-float {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,.45);
}

/* INSTAGRAM */
.instagram-float {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    transition: transform .3s ease, box-shadow .3s ease;
}

.instagram-float img {
    width: 26px;
    height: 26px;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,.45);
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 768px) {
    .seta { display: none; }

    .planos { gap: 20px; }

    .plano { flex: 0 0 85%; }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
        inset: auto 15px 15px auto;
    }

    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }
}

/* MOBILE */
@media (max-width: 900px) {
    .header-container {
        justify-content: center;
    }

    .menu,
    .cta {
        display: none;
    }
}

/* ================= CONTATO ================= */
.contato {
    width: 100%;
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, #0b061f 0%, #1a1340 100%);
    color: #fff;
    margin-bottom: 0;
}

.tag-contato {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 18px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    font-size: 14px;
}

.contato h2 {
    font-size: 42px;
    max-width: 720px;
    margin: 0 auto 20px;
}

.contato p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 42px;
    background: #2cff4a;
    color: #000000;
    font-weight: bold;
    border-radius: 40px;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-whatsapp img {
    width: 22px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44,255,74,0.45);
}

@media (max-width: 768px) {
    .contato h2 {
        font-size: 30px;
    }

    .contato p {
        font-size: 16px;
    }

    .btn-whatsapp {
        padding: 14px 30px;
    }
}

.contato {
    margin-bottom: 0;
    padding-bottom: 80px; /* controle fino */
}


/* ================= FOOTER FINAL ================= */
.footer-dark {
    width: 100%;
    background: linear-gradient(180deg, #1a1340 0%, #0b061f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(255,255,255,0.15);
}


/* CONTAINER INTERNO */
.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 80px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* desktop */
}

/* LOGO */
.footer-logo img {
    width: 180px;
    margin-bottom: 18px;
}

.footer-logo p {
    opacity: 0.75;
    line-height: 1.6;
    font-size: 15px;
    max-width: 320px;
}

/* COLUNAS */
.footer-link {
    display: block;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: #ff2fb3;
    transform: translateX(5px);
}

.footer-col h4 {
    margin-bottom: 22px; /* mais espaço abaixo do título */
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 18px 140px;
    font-size: 14px;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 16px;
}

.footer-contact-item a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact-item a:hover {
    color: #ff2fb3;
    transform: translateX(5px);
}

.icon-footer {
    width: 22px;
    height: 22px;
    color: #8F84FF; /* cor suave do footer */
    flex-shrink: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "logo logo"
            "links contact";
        gap: 40px;
        padding: 60px 20px;
        text-align: left;
    }

    .footer-logo {
        grid-area: logo;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        grid-area: links;
    }

    .footer-contact {
        grid-area: contact;
    }

    .footer-col h4 {
        text-align: left;
        margin-bottom: 22px;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .footer-col a.footer-link:hover {
        transform: none;
    }
}

.footer-bottom a {
    color: #8F84FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
