Template: arvina-pro
/* Fuente Poppins para todo el sitio */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

/* Paleta Pasqual360 */
:root {
    --lp-primary: #1f05db;        /* azul principal */
    --lp-primary-dark: #000000;   /* contraste fuerte */
    --lp-accent: #7b6cf5;         /* acento / botones secundarios */
    --lp-bg: #252626;             /* textos / fondos oscuros */
    --lp-text: #252626;
    --lp-light: #fefeff;          /* casi blanco */
}


/* Fuente global */
.lp-body,
body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--lp-text);
    margin: 0;
}

/* Contenedor base */
.lp-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lp-section {
    padding: 4rem 0;
}

.lp-section-light {
    background: #f7f7ff;
}

.lp-section-muted {
    background: #f1f2ff;
}

/* ====== HEADER / MENÚ ====== */

.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--lp-light);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    z-index: 50;
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.lp-logo-img {
    height: 48px;   /* tamaño recomendado */
    width: auto;
    display: block;
}


.lp-logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp-primary);
}

.lp-nav {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
}

.lp-nav a {
    position: relative;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.2s ease;
}

.lp-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--lp-accent);
    transition: width 0.2s ease;
}

.lp-nav a:hover {
    color: var(--lp-primary);
}

.lp-nav a:hover::after {
    width: 100%;
}

.lp-nav-cta {
    color: var(--lp-accent) !important;
    font-weight: 600;
}

/* Compensar header fijo */
.lp-main {
    padding-top: 80px;
}

/* ====== HERO ====== */

/* ===== HERO PASQUAL360 ===== */

.lp-hero {
    background: radial-gradient(circle at top left, #7b6cf5 0, #1f05db 40%, #000000 100%);
    color: #fefeff;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.lp-hero-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
    min-height: calc(100vh - 120px); /* pantalla casi completa considerando topbar+header */
}

.lp-hero-left {
    max-width: 620px;
}

.lp-hero-kicker {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c7c5ff;
    margin-bottom: 0.75rem;
}

.lp-hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.lp-hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.7rem;
    color: #e5e5ff;
}

.lp-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.lp-hero-note {
    font-size: 0.85rem;
    color: #c7c7ff;
}

/* Hero card */
.lp-hero-card {
    background: rgba(8, 8, 20, 0.9);
    border-radius: 2rem;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.lp-hero-card h3 {
    margin-bottom: 0.9rem;
    font-size: 1.1rem;
}

.lp-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-hero-card li {
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
}

.lp-hero-card li:last-child {
    border-bottom: none;
}

/* Responsivo */
@media (max-width: 900px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}


.lp-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-hero-card li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

/* ====== BOTONES ====== */

.lp-btn {
    display: inline-block;
    border-radius: 999px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}

.lp-btn-primary {
    background: var(--lp-primary);
    color: var(--lp-light);
}

.lp-btn-primary:hover {
    background: var(--lp-accent);
}

.lp-btn-ghost {
    background: transparent;
    color: #fefeff;
    border-color: rgba(255, 255, 255, 0.6);
}

.lp-btn-ghost:hover {
    border-color: #ffffff;
}

.lp-btn-outline {
    background: #ffffff;
    color: var(--lp-primary);
    border-color: var(--lp-primary);
}

.lp-btn-outline:hover {
    background: #ecebff;
}

.lp-btn-block {
    width: 100%;
}

/* ====== GRID / CARDS GENERALES ====== */

.lp-grid {
    display: grid;
    gap: 1.5rem;
}

.lp-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(37, 36, 54, 0.08);
    border: 1px solid #ecebff;
}

.lp-title-center {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* ====== PRECIOS (estilo tarjetas que enviaste) ====== */

.lp-pricing-grid {
    align-items: stretch;
}

.lp-pricing-card {
    border-radius: 2.5rem;
    padding: 2.2rem 2rem;
    text-align: left;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

.lp-pricing-card h3 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: #7b7b8a;
    margin-bottom: 0.6rem;
}

.lp-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--lp-primary);
}

.lp-price-currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.lp-price-period {
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 0.2rem;
}

.lp-price-note {
    font-size: 0.9rem;
    margin-top: 0.8rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.lp-price-ideal {
    font-size: 0.9rem;
    margin-top: 0.4rem;
}

/* tarjeta central destacada */
.lp-pricing-card-featured {
    background: var(--lp-primary);
    color: var(--lp-light);
    transform: translateY(-16px);
}

.lp-pricing-card-featured .lp-price {
    color: #ffffff;
}

.lp-pricing-card-featured h3 {
    color: #d7d6ff;
}

.lp-pricing-card-featured .lp-list li {
    color: #f3f3ff;
}

.lp-pricing-card-featured .lp-price-note,
.lp-pricing-card-featured .lp-price-ideal {
    color: #f3f3ff;
}

.lp-pricing-card-featured .lp-btn-outline {
    background: #fefeff;
    border-color: #fefeff;
    color: var(--lp-primary);
}

/* Lista */
.lp-list {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0 0 0.6rem 0;
}

.lp-list li {
    margin-bottom: 0.25rem;
}

/* ====== TESTIMONIOS Y CONTACTO (igual que antes, solo ajustes menores) ====== */

.lp-card-testimonial {
    font-size: 0.95rem;
}

.lp-client-name {
    display: block;
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--lp-primary);
}

.lp-contact {
    background: #000000;
    color: #e5e7eb;
}

.lp-contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.lp-form {
    background: #0b0b14;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #27273a;
}

.lp-form-group {
    margin-bottom: 0.9rem;
}

.lp-form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.lp-form-group input {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 0.7rem;
    border: 1px solid #374151;
    background: #020617;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.lp-form-group input:focus {
    outline: none;
    border-color: #7b6cf5;
}

.lp-form-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Footer */
.lp-footer {
    background: #000000;
    color: #a3a3b5;
    padding: 1.25rem 0;
    font-size: 0.85rem;
}

.lp-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Responsive básico */
@media (max-width: 900px) {
    .lp-nav {
        display: none; /* luego podemos hacer hamburguesa */
    }
    .lp-hero-grid,
    .lp-grid-3,
    .lp-contact-grid {
        grid-template-columns: 1fr;
    }
    .lp-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .lp-pricing-card-featured {
        transform: none;
    }
}

/* ================================
   TOP BAR – PASQUAL360 STYLE
   ================================ */

.lp-topbar {
    background: #000000; /* fondo negro elegante */
    color: #ffffff;
    font-size: 0.85rem;
    padding: 6px 0;
}

.lp-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-topbar-left span {
    margin-right: 1.5rem;
    opacity: 0.85;
}

.lp-topbar-left span:hover {
    opacity: 1;
}

.lp-topbar-right a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.lp-topbar-whatsapp {
    background: #25D366;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #ffffff;
    transition: background 0.2s ease;
}

.lp-topbar-whatsapp:hover {
    background: #1ebe5d;
}

/* Ajuste para que el header principal baje un poco */
.lp-header {
    margin-top: 32px; /* altura de la topbar */
}


/* ===== Botón Google Play (Hero) ===== */
.lp-btn-play img {
    height: 46px; /* igual altura que los botones */
    width: auto;
    display: block;
}

.lp-btn-play {
    display: flex;
    align-items: center;
    padding: 0;
    margin-left: 0.5rem;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.lp-btn-play:hover {
    transform: scale(1.05);
}

/* ===== Sección Características: Timeline Pasqual360 (Beneficios) ===== */

.lp-section-intro {
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
    font-size: 0.98rem;
    color: #4b4b5b;
}

.lp-timeline {
    position: relative;
    margin: 0 auto 2.5rem auto;
    max-width: 900px;
}

.lp-timeline::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #7b6cf5, #1f05db);
    opacity: 0.35;
}

.lp-timeline-step {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding-left: 80px;
    padding-right: 8px;
    margin-bottom: 1.8rem;
}

.lp-timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #7b6cf5;
    color: #1f05db;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.lp-timeline-content {
    background: #ffffff;
    border-radius: 1.4rem;
    padding: 1.4rem 1.5rem 1.1rem 1.5rem;
    box-shadow: 0 18px 40px rgba(37, 38, 62, 0.08);
    border: 1px solid #ecebff;
}

.lp-timeline-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.lp-timeline-content p {
    margin: 0 0 0.6rem 0;
    font-size: 0.95rem;
    color: #4b4b5b;
}

.lp-timeline-tag {
    display: inline-block;
    font-size: 0.78rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: #f0efff;
    color: #1f05db;
    font-weight: 500;
}

.lp-timeline-footer {
    text-align: center;
    font-size: 0.95rem;
    color: #3d3d4f;
}

/* Hover / énfasis */
.lp-timeline-step:hover .lp-timeline-content {
    border-color: #7b6cf5;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .lp-timeline::before {
        left: 26px;
    }

    .lp-timeline-step {
        padding-left: 72px;
        margin-bottom: 1.6rem;
    }

    .lp-timeline-badge {
        width: 52px;
        height: 52px;
        font-size: 0.9rem;
    }

    .lp-timeline-content {
        padding: 1.2rem 1.2rem 1rem 1.2rem;
    }
}


/* ---------------------------- */
/* Redes sociales en TopBar     */
/* ---------------------------- */

.lp-topbar-social {
    display: flex;
    gap: 8px;
    margin-right: 12px;
    align-items: center;
}

.lp-topbar-social-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #252626; /* gris oscuro elegante */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.25s ease;
}

/* Hover bonito */
.lp-topbar-social-btn:hover {
    transform: scale(1.12);
    opacity: 0.85;
}

/* Colores individuales */
.lp-topbar-social-btn.fb { background: #1877f2; }
.lp-topbar-social-btn.ig { background: #d62976; }
.lp-topbar-social-btn.tk { background: #000000; }
.lp-topbar-social-btn.yt { background: #ff0000; }


/* ===== CONTACTO: Opción B ===== */

.lp-contact-section {
    background: #050505;
    color: #fefeff;
    padding: 4rem 0;
}

.lp-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.lp-contact-left h2 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.lp-contact-subtitle {
    font-size: 0.98rem;
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.lp-contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.lp-contact-benefits li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.lp-contact-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.lp-contact-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.lp-contact-whatsapp-cta:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

/* Card del formulario */
.lp-contact-right {
    background: #0d0d14;
    border-radius: 1.5rem;
    padding: 1.8rem 2rem 1.6rem 2rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    border: 1px solid #1f1f2b;
}

.lp-contact-form h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.lp-contact-form label {
    display: block;
    margin-top: 0.7rem;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.lp-contact-form input {
    width: 100%;
    border-radius: 0.9rem;
    border: 1px solid #252637;
    background: #05050b;
    color: #fefeff;
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.lp-contact-form input::placeholder {
    color: #6f6f80;
}

.lp-contact-form input:focus {
    outline: none;
    border-color: #1f05db;
    box-shadow: 0 0 0 1px rgba(31,5,219,0.5);
}

.lp-contact-submit {
    width: 100%;
    margin-top: 1rem;
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    background: #1f05db;
    color: #ffffff;
    font-size: 0.97rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.lp-contact-submit:hover {
    background: #7b6cf5;
    transform: translateY(-1px);
}

.lp-contact-privacy {
    font-size: 0.78rem;
    opacity: 0.8;
    margin-top: 0.6rem;
}

/* Mensajes */
.lp-contact-alert {
    padding: 0.6rem 0.9rem;
    border-radius: 0.7rem;
    font-size: 0.86rem;
    margin-bottom: 0.9rem;
}

.lp-contact-alert.success {
    background: #103a1d;
    border: 1px solid #1ebe5d;
    color: #c9ffd4;
}

.lp-contact-alert.error {
    background: #3a1010;
    border: 1px solid #ff4d4f;
    color: #ffd6d6;
}

/* Responsive */
@media (max-width: 900px) {
    .lp-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ----- Fix formulario contacto: colores de texto ----- */
.lp-contact-form input[type="text"],
.lp-contact-form input[type="email"],
.lp-contact-form input[type="tel"],
.lp-contact-form textarea {
    color: #111111;            /* texto oscuro para fondo claro */
    background-color: #ffffff; /* campos blancos */
}

/* Color de los placeholders */
.lp-contact-form input::placeholder,
.lp-contact-form textarea::placeholder {
    color: #80808a;
    opacity: 1;
}



/* ============================
   PRICING – PLANES PASQUAL360
   ============================ */

.lp-pricing {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #f6f6ff 0%, #ffffff 100%);
}

.lp-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.lp-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7b6cf5;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lp-section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #252626;
    margin-bottom: 0.75rem;
}

.lp-section-subtitle {
    font-size: 0.98rem;
    color: #5c5c5c;
}

/* GRID DE PLANES */

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* CARD BASE */

.lp-plan-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 2.2rem 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(127, 129, 255, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(31, 5, 219, 0.4);
}

/* VARIANTE DESTACADA */

.lp-plan-featured {
    background: linear-gradient(145deg, #1f05db, #7b6cf5);
    color: #fefeff;
    transform: translateY(-10px);
}

.lp-plan-featured .lp-plan-name,
.lp-plan-featured .lp-plan-price,
.lp-plan-featured .lp-plan-ideal,
.lp-plan-featured .lp-plan-features li {
    color: #fefeff;
}

.lp-plan-featured .lp-plan-features li::before {
    background: #fefeff;
}

/* TAGS */

.lp-plan-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1f05db;
    background: rgba(31, 5, 219, 0.08);
    margin-bottom: 1rem;
}

.lp-plan-tag-popular {
    background: #fefeff;
    color: #1f05db;
}

/* TIPOGRAFÍA Y PRECIO */

.lp-plan-name {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    color: #252626;
}

.lp-plan-price {
    margin-bottom: 0.8rem;
}

.lp-price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
}

.lp-price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 0.1rem;
}

.lp-price-period {
    font-size: 0.9rem;
    color: #555;
}

.lp-plan-ideal {
    font-size: 0.9rem;
    color: #5b5b5b;
    margin-bottom: 1.4rem;
}

/* LISTA DE CARACTERÍSTICAS */

.lp-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
}

.lp-plan-features li {
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.lp-plan-features li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: #1f05db;
}

/* BOTONES */

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
        transform 0.15s ease;
}

.lp-btn-primary {
    background: #fefeff;
    color: #1f05db;
    border-color: transparent;
}

.lp-plan-featured .lp-btn-primary {
    background: #fefeff;
    color: #1f05db;
}

.lp-btn-outline {
    background: transparent;
    color: #1f05db;
    border-color: #1f05db;
}

.lp-btn:hover {
    transform: translateY(-1px);
}

.lp-btn-outline:hover {
    background: #1f05db;
    color: #fefeff;
}

.lp-plan-featured .lp-btn-primary:hover {
    background: #e5e6ff;
}

/* RESPONSIVE */

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

@media (max-width: 768px) {
    .lp-pricing {
        padding: 3.5rem 0 4rem;
    }

    .lp-section-title {
        font-size: 1.8rem;
    }

    .lp-pricing-grid {
        grid-template-columns: 1fr;
    }

    .lp-plan-featured {
        transform: none;
    }
}


.lp-contact-success {
    margin-top: 1rem;
    color: #34d399; /* verde agradable */
    font-size: 0.95rem;
}

.lp-contact-error {
    margin-top: 1rem;
    color: #f97373; /* rojo suave */
    font-size: 0.95rem;
}

.clientes-carousel-section {
    padding: 80px 0;
    text-align: center;
    background: #f8f8ff;
}

.clientes-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 50px;
    animation: scroll 20s linear infinite;
}

.logo-item img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-track {
        gap: 30px;
        animation-duration: 25s;
    }
    .logo-item img {
        height: 40px;
    }
}

