* {
    padding: 0;
    margin: 0;
    font-weight: 600;

}


/* BUSCADOR DENTRO DEL HEADER */
.search-box-header {

    margin: 10px auto 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    padding: 8px 15px;
}

.search-box-header input {

    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.search-box-header button {
    padding: 10px 18px;
    background: #0047FF;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
}

.search-box-header button:hover {
    background: #0033c2;
}

/* Resaltado del texto encontrado */
.highlight {
    background: yellow;
    color: black;
    padding: 2px;
    border-radius: 3px;
}




.chat-box {
    width: 350px;
    max-width: 90%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 0;
    animation: fadeIn 0.3s ease;
    z-index: 9999;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: #0047FF;
    color: white;
    padding: 12px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cerrarChat {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: white;
}

.messages {
    height: 250px;
    overflow-y: auto;
    padding: 10px;
}

.bot,
.user {
    padding: 8px 10px;
    margin: 7px 0;
    border-radius: 10px;
}

.bot {
    background: #e6ecff;
}

.user {
    background: #d1ffcf;
    text-align: right;
}

.chat-input {
    padding: 10px;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #bbb;
}

.chat-input button {
    background: #0047FF;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
}




/* ⭐ RESPONSIVE CELULAR */
@media (max-width: 768px) {
    .search-box-header {
        display: none;
        width: 100%;
        margin: 10px 0;
        justify-content: center;
    }

    .search-box-header input {
        width: 70%;
    }

    .search-box-header button {
        width: auto;
    }
}

@media (max-width: 768px) {
    .search-box-header {
        margin-top: 90px !important;
    }
}




/* Fondo animado estilo GPS */
body {
    background-image: url("img/fondo.png");
    /* tu imagen */
    background-size: 200%;
    /* más grande para animación */
    background-repeat: repeat;
    /* permite movimiento */
    background-position: center;
    animation: moverMapa 200s linear infinite;
    margin: 0;
    padding: 0;
}



html,
body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

section,
div,
header,
footer {
    max-width: 100%;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    animation: float 3s infinite ease-in-out;
    text-decoration: none;
}

.wp-icon {
    width: 32px;
    height: 32px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .wp-icon {
        width: 28px;
        height: 28px;
    }
}










/* Animación del mapa */
@keyframes moverMapa {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* VERSIÓN LENTA PARA CELULARES */
@media (max-width: 768px) {
    body {
        background-image: url("img/fondocel.png");
        /* Aquí pones la versión para móvil */
        animation: moverMapa 800s linear infinite;
        /* MUCHO más lento */
        background-size: 230%;
        /* mejora el zoom en móvil */
    }
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.507);
    /* capa clara */
    z-index: -1;
}

body {
    background-size: 180% auto;
}












/* Contenedor general */
.info-section {
    display: flex;
    justify-content: center;
    padding: 100px 20px;
}

/* Tarjeta elegante */
.info-card {
    font-size: 20px;
    margin-bottom: 100px;
    margin-top: 100px;
    max-width: 900px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: black;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Animación */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    filter: blur(8px);
    transition: all 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* 📱 Responsive: Celulares */
@media (max-width: 600px) {
    .info-section {
        padding: 60px 15px;
    }

    .info-card {
        height: 420px;
        padding: 25px;
        border-radius: 15px;
        font-size: 0.95rem;
    }

    .info-card h2 {
        font-size: 1.6rem;
    }

    .info-card p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* 📱 Tablets */
@media (max-width: 900px) {
    .info-card {
        max-width: 85%;
    }
}





*::first-letter {
    text-transform: uppercase;
    /* solo la PRIMER letra en mayúscula */
}




.conteiner-1-img {
    mask-image: linear-gradient(to bottom, transparent, white 50%), linear-gradient(to right, transparent, white 5%), linear-gradient(to left, transparent, white 20%), linear-gradient(to top, transparent, white 10%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
    /* necesario para Chrome */
    width: 60%;

}

.img-1 {
    width: 100px;
}

.img-1 img {
    width: 300px;
}




.menu-1 ul li {
    font-weight: 600;
    list-style: none;
    position: relative;
    display: inline-block;
    transition: transform 0.2s;
    cursor: pointer;
}

.menu-1 ul li a {
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
    border: 2px solid transparent;
    /* BORDE INVISIBLE */
    transition: 0.3s ease;
    /* ANIMACIÓN SUAVE */
}

/* Al pasar el mouse aparece el borde */
.menu-1 ul li a:hover {
    border-color: rgba(255, 255, 255, 0.7);
    /* BORDE TRANSPARENTE VISIBLE */
}

.menu-1 ul li a:hover {
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}


.menu-1 ul li:hover {
    transform: translateY(-5px);
}

.menu-1 ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: aqua;
    transition: width 0.2s;
}

.menu-1 ul li:hover::after {
    width: 100%;
}


.menu-1 li {
    margin: 20px;
}

.menu-1 {
    margin-top: 20px;
    margin-bottom: 30px;
}

.menu-1 a {
    font-size: 30px;
    color: black;
    text-decoration: none;
    transition: 0.8s ease;
}

.menu-1 a:hover {
    transition: 0.5s ease;
    color: blue;
}

.menu-1 li {
    list-style-type: none;
}

.conteiner-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 40px;
}

.conteiner-1-img img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.conteiner-1-content {
    max-width: 600px;
}

.conteiner-1-content h1 {
    font-size: 32px;
    font-weight: bold;
    color: #003cff;
}

.conteiner-1-ctd h3 {
    font-size: 24px;
    color: #0047ff;
    margin-bottom: 10px;
}

.conteiner-1-ctd p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.conteiner-2 {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.conteiner-2-ctd h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0047ff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* LISTA PREMIUM */
.servicios-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 12px 25px;
}

.servicios-lista li {
    background: rgba(0, 70, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.servicios-lista li:hover {
    background: rgba(0, 70, 255, 0.2);
    transform: translateX(5px);
}

.servicios-lista span {
    font-size: 20px;
}

/* IMAGEN */
.conteiner-2-img img {
    width: 220px;
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
    animation: float 4s infinite ease-in-out;
}

/* ANIMACIÓN SUAVE */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .conteiner-2 {
        text-align: center;
        justify-content: center;
    }

    .servicios-lista {
        grid-template-columns: 1fr;
    }
}


footer {



    margin-top: 200px;
    padding: 35px 20px;



    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    /* espacio entre icono y texto */
    color: black;
    /* ajusta al color de tu footer */
    text-decoration: none;
    font-size: 14px;
}

footer ul li a svg {
    fill: black;
    /* iconos blancos (los puedes cambiar) */
}




footer a {
    color: black;
    text-decoration: none;
}

footer li {

    padding: 10px 15px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-weight: 600;

}

.beneficios {
    width: 70%;
    max-width: 800px;
    /* Limita tamaño en pantallas grandes */
    height: auto;
    /* Mejora responsividad */
    padding: 20px;
    border-radius: 15px;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, blue, yellow) border-box;
    border: 10px solid transparent;

    transition: .3s;
}

.conteiner-3 {
    text-transform: capitalize;
    margin: 250px 0;
    border-radius: 15px;
    height: auto;
}




.conteiner-4-img img {
    width: 300px;
}






.beneficios {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 35px auto;
    max-width: 1000px;
}

.item {
    background: linear-gradient(135deg, #0062ff, #00d0ff);
    color: white;
    padding: 14px 19px;
    border-radius: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

/* Animación premium */
.item:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
























/* ------------------------------ */
/*    MENÚ HAMBURGUESA MÓVIL      */
/* ------------------------------ */

.hamburger {
    display: none;
    /* oculto en PC */
    font-size: 36px;
    cursor: pointer;
    margin-right: 20px;
    color: black;



}

/* Estructura del header en PC */
.box-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

/* MENÚ móvil oculto inicialmente */
.menu-1 {
    transition: max-height .3s ease;
}

.menu-1 ul {
    margin: 0;
    padding: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {

    /* Mostrar botón hamburguesa */
    .hamburger {
        display: block;
    }

    /* Ajustar logo */
    .img-1 img {
        width: 200px;
    }

    /* Menu en modo móvil */
    .menu-1 {
        position: absolute;
        top: 90px;
        right: 0;
        width: 100%;
        background: white;
        max-height: 0;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .menu-1.active {
        max-height: 300px;
        /* se despliega */
        padding: 10px 0;
    }

    .menu-1 ul li {
        display: block;
        margin: 15px 0 !important;
    }

    .menu-1 a {
        font-size: 24px;
    }

    /* Evitar que el menú se mueva al lado */
    .menu-1 {
        transform: none !important;
        margin: 0 !important;
    }
}



/* ------------------------------
   CONTENEDOR 1 RESPONSIVE
------------------------------ */
@media (max-width: 900px) {
    .conteiner-1 {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .conteiner-1-img {
        width: 100%;
    }

    .conteiner-1-content h1 {
        font-size: 24px;
    }
}


/* ------------------------------
   CONTENEDOR 2 RESPONSIVE
------------------------------ */
@media (max-width: 900px) {

    .conteiner-2 {
        flex-direction: column;
        text-align: center;
    }

    .conteiner-2-img img {
        width: 170px;
        margin-top: 20px;
    }

    .servicios-lista {
        grid-template-columns: 1fr !important;
        padding: 0 20px;
    }
}



/* ------------------------------
   BENEFICIOS RESPONSIVE
------------------------------ */
@media (max-width: 900px) {
    .beneficios {
        width: 95%;
        justify-content: center;
        padding: 10px;
    }

    .item {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}



/* ------------------------------
   FOOTER RESPONSIVE
------------------------------ */
@media (max-width: 900px) {

    footer {
        flex-direction: column;
        text-align: center;
    }

    footer ul {
        padding: 0;
        margin: 10px 0;
    }

    .conteiner-4-img img {
        width: 200px;
    }
}



@media (max-width: 900px) {

    .conteiner-3 {
        height: auto !important;
        /* fuerza a expandirse */
        padding: 20px;
    }

    .beneficios {
        width: 100%;
        padding: 10px;
        gap: 15px;
    }

    .item {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}




@media (max-width: 900px) {

    .beneficios {
        width: 90%;
        max-width: 100%;
        padding: 12px;
        /* antes 20px */
        border: 6px solid transparent;
        /* borde más fino */
        margin: auto;
    }

    .item {
        margin: 6px 0;
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .item svg {
        width: 20px;
        height: 20px;
    }
}


/* CONTENEDOR GENERAL */
.platform-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin: 50px auto;
}


/* MASCOTA SVG */
.mascot-svg {
    width: 200px;
    animation: mascotFloat 4s ease-in-out infinite;
}

/* Animación de flotación suave */
@keyframes mascotFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ANIMACIÓN DE PARPADEO */
.eye-blink {
    animation: blink 4s infinite;
    transform-origin: center;
}

@keyframes blink {

    0%,
    92%,
    100% {
        transform: scaleY(1);
    }

    95% {
        transform: scaleY(0.1);
    }
}

/* TARJETA PLATAFORMA */
.gps-card {
    width: 330px;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    background: white;
    border: 4px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #0047ff, #ffdd00) border-box;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.gps-card h2 {
    font-size: 24px;
    color: #0047ff;
    margin-bottom: 10px;
}

.gps-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, #0047ff, #1f7cff);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25);
}

.gps-btn:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 750px) {
    .platform-container {
        flex-direction: column;
        gap: 20px;
    }

    .mascot-svg {
        width: 180px;
    }

    .gps-card {
        width: 90%;
    }
}

/* ANIMACIÓN LUZ DEL GPS */
.gps-light {
    animation: gpsBlink 1.2s infinite;
    transform-origin: center;
}

@keyframes gpsBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}


/* RESPONSIVE MEJORADO */
@media (max-width: 800px) {

    .platform-container {
        flex-direction: column;
        gap: 10px;
        margin: 20px auto;
    }

    .mascot-svg {
        width: 70%;
        max-width: 240px;
    }

    .gps-card {
        width: 90%;
        padding: 20px;
    }

    .gps-card h2 {
        font-size: 20px;
    }

    .gps-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
}

@media (max-width: 450px) {

    .mascot-svg {
        width: 85%;
        max-width: 220px;
    }

    .gps-card {
        padding: 18px;
    }

    .gps-btn {
        margin-top: 10px;
        width: 100%;
        padding: 5px;
    }
}



html,
body {
    overflow-x: hidden !important;
    width: 100%;
}



/* ====== ACOMPAÑAMIENTO POLICIAL - STYLES (CORREGIDO) ====== */

.zp-card-acompanamiento {


    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 980px;
    margin: 28px auto;
    padding: 18px;
    border-radius: 14px;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #0047ff 0%, #ffdd00 100%) border-box;
    border: 10px solid transparent;
    box-shadow: 0 10px 30px rgba(2, 20, 70, 0.12);
    overflow: hidden;
}

/* Left column (badge + image) */
.zp-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 220px;
    /* espacio fijo en desktop */
    align-items: center;
}

/* Escudo */
.zp-badge {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* Image box */
.zp-image-box {
    width: 100%;
    max-width: 220px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    border: 2px solid rgba(0, 71, 255, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.zp-image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* Right column (texto) */
.zp-card-body {
    flex: 1;
    padding: 6px 4px;
    min-width: 0;
    /* importante para evitar overflow en flex */
}

.zp-card-body h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #0047ff;
    letter-spacing: 0.2px;
}

.zp-lead {
    margin: 0 0 12px 0;
    color: #222;
    line-height: 1.45;
    font-size: 15px;
}

/* Lista */
.zp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    font-weight: 600;
    color: #0b2b69;
}

.zp-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CTA */
.zp-cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.zp-cta {
    display: inline-block;
    background: linear-gradient(135deg, #0047ff, #1f7cff);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 70, 255, 0.18);
    transition: transform .16s ease, box-shadow .16s ease;
}

.zp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 70, 255, 0.22);
}

.zp-note {
    color: #333;
    font-size: 13px;
    opacity: 0.9;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 820px) {
    .zp-card-acompanamiento {
        padding: 14px;
        gap: 14px;
    }

    .zp-features {
        grid-template-columns: 1fr;
    }

    .zp-left {
        flex: 0 0 140px;
    }

    .zp-image-box {
        max-width: 140px;
    }

    .zp-card-body h3 {
        font-size: 18px;
    }

    .zp-cta {
        padding: 10px 14px;
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .zp-card-acompanamiento {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .zp-card-body {
        padding: 0;
    }

    .zp-left {
        order: -1;
    }

    /* mostrar imagen arriba si prefieres */
    .zp-features {
        text-align: left;
        margin: 6px 0 12px;
    }

    .zp-note {
        display: block;
        width: 100%;
        text-align: center;
    }
}


/* ======== PULIDO GENERAL ======== */

.zp-card-acompanamiento {

    margin-top: 200px;
    margin-bottom: 200px;
    align-items: center;
    /* Imagen y texto a la misma altura */
}

/* Mejor espaciado entre imagen y texto */
.zp-left {
    margin-right: 10px;
}

/* Mejor lectura del párrafo */
.zp-card-body p {
    text-align: justify;
    line-height: 1.45;
    margin-bottom: 18px;
}

/* Listas más separadas y ordenadas */
.zp-features li {
    margin-bottom: 6px;
    font-size: 15px;
}

/* Más espacio entre las dos columnas de listas */
.zp-features {
    column-gap: 25px !important;
    row-gap: 8px !important;
}

/* Botón: más presencia visual */
.zp-cta {
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 12px;
}

/* Nota más discreta */
.zp-note {
    margin-left: 4px;
    opacity: 0.8;
}

/* ======== RESPONSIVE PERFECIONADO ======== */
@media (max-width: 900px) {
    .zp-card-acompanamiento {
        flex-direction: column;
        text-align: center;
    }

    .zp-left {
        margin: 0 0 16px 0;
    }

    .zp-features {
        width: 100%;
        text-align: left;
        margin-top: 10px;
        grid-template-columns: 1fr;
    }

    .zp-card-body {
        width: 100%;
    }

    .zp-card-body p {
        text-align: center;
    }
}