:root {
    --primary: #001C55;
    --electric: #0062ff;
    --accent: #eef4ff;
    --success: #00d26a;
    --glass: rgba(255, 255, 255, 0.85);
    --white: #ffffff;
}

.aap-final-vibe {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fbfcfb;
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 98, 255, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 28, 85, 0.05) 0px, transparent 50%);
    color: #101828;
    overflow-x: hidden;
}

/* --- NAVEGACIÓN --- */
.nav-container {
    padding: 40px 5% 20px;
    display: flex;
    justify-content: center;
    background: transparent;
}
.aap-logo { 
    width: 500px; 
    height: auto; 
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.05)); 
}

/* --- HERO --- */
.hero-section {
    text-align: center;
    padding: 60px 5% 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.hero-section h1 {
    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 0.9;
    margin-bottom: 30px;
    color: var(--primary);
}
.hero-section h1 span {
    background: linear-gradient(90deg, var(--primary), var(--electric));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-section p {
    font-size: 1.4rem;
    color: #475467;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

/* --- METODOLOGÍA Y BOTÓN --- */
.method-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 120px;
    padding: 0 5%;
}
.method-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.method-pill {
    background: var(--white);
    padding: 25px 45px;
    border-radius: 100px;
    border: 1px solid #eaecf0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 15px;
}
.method-pill h3 { margin: 0; font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.method-pill p { margin: 0; font-size: 0.95rem; color: #667085; }

/* --- SERVICIOS BENTO GRID --- */
.services-section {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 0 5%;
}
.section-tag {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--electric);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}
.section-title { text-align: center; font-size: 3rem; font-weight: 800; margin-bottom: 60px; letter-spacing: -1.5px; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.bento-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 40px;
    border: 1px solid #f2f4f7;
    box-shadow: 0 20px 40px rgba(0, 28, 85, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.bento-card .icon { font-size: 3.5rem; margin-bottom: 20px; display: block; }
.bento-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; color: var(--primary); }
.bento-card p { font-size: 1rem; color: #667085; line-height: 1.6; margin-bottom: 0; }

/* --- CLIENTES MARQUEE --- */
.clients-container {
    background: #f8f9fc;
    padding: 100px 0;
    margin-bottom: 120px;
    transform: rotate(-1.5deg);
    width: 110vw;
    margin-left: -5vw;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}
.marquee { overflow: hidden; white-space: nowrap; padding: 10px 0; transform: rotate(1.5deg); }
.track { display: inline-flex; gap: 80px; align-items: center; }
.client-img { height: 150px; width: auto; filter: none; opacity: 1; }

/* --- PAQUETES (4 EN LINEA) --- */
.pricing-section {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 2%;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.package-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 40px;
    border: 1px solid #eaecf0;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.package-card.dark { background: var(--primary); border: none; }
.package-card.featured { border: 2px solid var(--electric); z-index: 2; box-shadow: 0 20px 40px rgba(0, 98, 255, 0.1); }
.package-card h3 { font-size: 1.4rem; font-weight: 800; margin: 0 0 10px; }
.package-card.dark h3, .package-card.dark li { color: var(--white) !important; }
.package-card.dark p { color: rgba(255,255,255,0.6); }
.package-card span { color: var(--electric); font-weight: 800; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1px; }
.check-list { list-style: none; padding: 0; margin: 25px 0; flex-grow: 1; text-align: left; }
.check-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.85rem; }
.check-list li::before { content: "✓"; color: var(--success); font-weight: 900; }

/* --- BUTTONS --- */
.btn-cta {
    background: var(--electric);
    color: white !important;
    padding: 22px 55px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(0, 98, 255, 0.25);
    border: none;
    cursor: pointer;
}
.wa-button {
    position: fixed;
    bottom: 40px; right: 40px;
    background: var(--success);
    width: 75px; height: 75px;
    border-radius: 25px;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 20px 40px rgba(0, 210, 106, 0.3);
    z-index: 1000;
}

/* --- RESPONSIVE / MEDIA QUERIES --- */
@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 992px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .aap-logo { width: 90%; }
    .hero-section h1 { font-size: 3rem; }
}
@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}