/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 29 2025 | 12:28:01 */
/* ============================================================
   BLOQUE PUENTE — VERSIÓN HOME (APPLE + AZUL CORPORATIVO)
   ============================================================ */

.elite-bridge-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Contenedor */
.elite-bridge-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid #e6e6e6;
    background: linear-gradient(to bottom, #ffffff, #f7f7f7);
    border-radius: 14px;
}

/* Eyebrow */
.elite-eyebrow {
    display: block;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    color: #3a3a3c; /* Gris Apple */
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Título */
.elite-bridge-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

/* Subtexto */
.elite-bridge-subtext {
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #555;
    margin: 0 auto 35px;
    max-width: 700px;
    line-height: 1.6;
}

/* Botón — Azul corporativo de la home */
.elite-link-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #0071e3; /* Azul Apple / Azul cabecera */
    color: #ffffff;
    text-decoration: none;
    padding: 18px 35px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: none;
}

/* Hover */
.elite-link-button:hover {
    background-color: #005bbf; /* Azul más oscuro */
    transform: translateY(-3px);
}

/* Wrapper */
.elite-button-wrapper {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .elite-bridge-container { padding: 30px 20px; }
    .elite-bridge-text { font-size: 1.9rem; }
}
/* ============================================================
   ACCESOS RÁPIDOS — HOME (APPLE STYLE)
   ============================================================ */

.home-quicklinks {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.hq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-left: 6px;
    letter-spacing: -0.02em;
}

/* Scroll horizontal */
.hq-scroll {
    overflow-x: auto;
    padding-bottom: 15px;
}

.hq-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 4px 0;
}

/* Tarjetas */
.hq-card {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 200px;
    height: 60px;
    padding: 10px 24px;

    background: #ffffff;
    color: #3a3a3c;

    border-radius: 14px;
    border: 1px solid #e5e5e7;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);

    text-decoration: none;
    transition: all 0.25s ease;
}

.hq-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Hover Apple */
.hq-card:hover {
    transform: translateY(-2px);
    border-color: #007aff;
    color: #007aff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
    .hq-card {
        min-width: 170px;
        height: 50px;
    }
    .hq-card h3 {
        font-size: 0.9rem;
    }
}
/* ============================================================
   BLOQUE BENEFICIOS — HOME (APPLE STYLE)
   ============================================================ */

.home-benefits {
    max-width: 1024px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Título */
.hb-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111112;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

/* Subtítulo */
.hb-subtitle {
    font-size: 1.15rem;
    color: #3a3a3c;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Grid */
.hb-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .hb-title {
        font-size: 2.8rem;
    }
    .hb-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tarjetas */
.hb-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    text-align: center;
}

/* Hover Apple */
.hb-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Título de tarjeta */
.hb-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111112;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

/* Texto */
.hb-card-text {
    font-size: 1rem;
    color: #3a3a3c;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Métrica destacada */
.hb-card-metric {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111112;
    padding: 8px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin: 10px 0 20px;
    font-style: italic;
}
/* ============================================================
   HOME — ESTILO APPLE PREMIUM (UNIFICADO)
   ============================================================ */

/* Contenedor general del bloque SEO */
.home-seo-block {
    max-width: 1024px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Título principal */
.hs-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111112;
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

@media (min-width: 768px) {
    .hs-title {
        font-size: 2.8rem;
    }
}

/* Contenedor de tarjetas */
.hs-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Tarjetas */
.hs-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.25s ease;
}

/* Hover Apple */
.hs-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Títulos de tarjeta */
.hs-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111112;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

/* Texto */
.hs-card-text {
    font-size: 1rem;
    color: #3a3a3c;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CTA Apple Blue */
.hs-cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007aff; /* Azul Apple */
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hs-cta:hover {
    background-color: #0060c0;
    transform: translateY(-2px);
}

/* Animación inicial (JS la activa) */
.reveal {
    opacity: 0;
    transform: translateY(25px);
}
/* ============================================================
   HOME — BLOQUE GUÍA RÁPIDA (APPLE STYLE)
   ============================================================ */

.home-guide-block {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.hg-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111112;
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .hg-title {
        font-size: 2.4rem;
    }
}

.hg-card {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}

.hg-card:last-child {
    border-bottom: none;
}

.hg-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111112;
    margin-bottom: 10px;
}

.hg-text {
    font-size: 1rem;
    color: #3a3a3c;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hg-cta {
    display: inline-block;
    padding: 10px 18px;
    background-color: #007aff;
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hg-cta:hover {
    background-color: #0060c0;
    transform: translateY(-2px);
}

/* Animación Reveal */
.reveal {
    opacity: 0;
    transform: translateY(25px);
}
/* ============================================================
   HOME — BLOQUE HOUSEKEEPING (APPLE STYLE)
   ============================================================ */

.home-housekeeping-block {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.hh-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111112;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .hh-title {
        font-size: 2.4rem;
    }
}

.hh-description {
    font-size: 1.05rem;
    color: #3a3a3c;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 35px;
}

.hh-card {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}

.hh-card:last-child {
    border-bottom: none;
}

.hh-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111112;
    margin-bottom: 10px;
}

.hh-text {
    font-size: 1rem;
    color: #3a3a3c;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hh-cta {
    display: inline-block;
    padding: 10px 18px;
    background-color: #007aff;
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hh-cta:hover {
    background-color: #0060c0;
    transform: translateY(-2px);
}

/* Animación Reveal */
.reveal {
    opacity: 0;
    transform: translateY(25px);
}
/* ============================================================
   BLOQUE AUTORIDAD — HOME (APPLE STYLE)
   ============================================================ */

.authority-block {
    padding: 60px 20px;
    background: #ffffff;
}

.authority-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.authority-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111112;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .authority-title {
        font-size: 2.4rem;
    }
}

.authority-text {
    font-size: 1.05rem;
    color: #3a3a3c;
    line-height: 1.6;
    margin-bottom: 35px;
}

.authority-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin-bottom: 35px;
}

.authority-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111112;
    margin-bottom: 12px;
}

.authority-card-text {
    font-size: 1rem;
    color: #3a3a3c;
    line-height: 1.6;
}

.authority-card-text a {
    color: #007aff;
    font-weight: 600;
    text-decoration: none;
}

.authority-card-text a:hover {
    text-decoration: underline;
}

.authority-bottom-text {
    font-size: 1.05rem;
    color: #3a3a3c;
    margin-bottom: 25px;
}

.authority-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 600px) {
    .authority-cta-wrapper {
        flex-direction: row;
        justify-content: center;
    }
}

.authority-cta,
.authority-cta-secondary {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.authority-cta {
    background-color: #007aff;
    color: #ffffff;
}

.authority-cta:hover {
    background-color: #0060c0;
    transform: translateY(-2px);
}

.authority-cta-secondary {
    background-color: #f2f2f7;
    color: #111112;
    border: 1px solid #dbdbe3;
}

.authority-cta-secondary:hover {
    background-color: #e5e5ea;
    transform: translateY(-2px);
}

/* Animación Reveal */
.reveal {
    opacity: 0;
    transform: translateY(25px);
}
/* ============================================================
   BLOQUE ÁREA — HOME (APPLE STYLE)
   ============================================================ */

.area-block {
    padding: 70px 20px;
    background: #ffffff;
}

.area-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.area-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111112;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .area-title {
        font-size: 2.4rem;
    }
}

.area-intro {
    font-size: 1.1rem;
    color: #3a3a3c;
    line-height: 1.6;
    margin-bottom: 40px;
}

.area-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin-bottom: 28px;
    text-align: left;
}

.area-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111112;
    margin-bottom: 10px;
}

.area-card-text {
    font-size: 1rem;
    color: #3a3a3c;
    line-height: 1.6;
}

.area-card-text a {
    color: #007aff;
    font-weight: 600;
    text-decoration: none;
}

.area-card-text a:hover {
    text-decoration: underline;
}

.area-cta-wrapper {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 600px) {
    .area-cta-wrapper {
        flex-direction: row;
        justify-content: center;
    }
}

.area-cta,
.area-cta-secondary {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.area-cta {
    background-color: #007aff;
    color: #ffffff;
}

.area-cta:hover {
    background-color: #0060c0;
    transform: translateY(-2px);
}

.area-cta-secondary {
    background-color: #f2f2f7;
    color: #111112;
    border: 1px solid #dbdbe3;
}

.area-cta-secondary:hover {
    background-color: #e5e5ea;
    transform: translateY(-2px);
}

/* Animación Reveal */
.reveal {
    opacity: 0;
    transform: translateY(25px);
}
/* ===========================
   Ranking Section (Apple Style)
   =========================== */

:root {
    --blue: #007aff;
    --grey-900: #1a1a1a;
    --grey-600: #555;
    --border: #e5e5e5;
    --radius: 14px;
    --shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.ranking-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.ranking-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ranking-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--grey-900);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.ranking-subtitle {
    font-size: 1rem;
    color: var(--grey-600);
    margin-bottom: 30px;
}

.ranking-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.ranking-table thead tr {
    background: linear-gradient(135deg, #f7f7f7, #eaeaea);
}

.ranking-table th,
.ranking-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.ranking-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.tag {
    font-size: 0.75rem;
    background: #dcdcdc;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 4px;
}

.tag-ref {
    background: #b1a788;
    color: #fff;
}

.ranking-source {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--grey-600);
    text-align: left;
}

.ranking-cta-wrapper {
    margin-top: 30px;
    text-align: center;
}

.ranking-cta {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.ranking-cta:hover {
    background: #0060c9;
    transform: translateY(-2px);
}
.pre-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/* ===========================
   Geotargeting Section (Home)
   =========================== */

.geo-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.geo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.geo-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111112;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.geo-intro {
    font-size: 1.1rem;
    color: #3a3a3c;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.geo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.geo-card {
    flex: 1 1 300px;
    background: #ffffff;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease;
}

.geo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.geo-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111112;
    margin-bottom: 12px;
}

.geo-card-text {
    font-size: 0.95rem;
    color: #3a3a3c;
    line-height: 1.6;
    margin-bottom: 14px;
}

.geo-card-specialists {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111112;
    margin-bottom: 18px;
}

.geo-card-specialists span {
    color: #007aff;
}

.geo-cta {
    display: inline-block;
    padding: 10px 18px;
    background: #007aff;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s ease;
}

.geo-cta:hover {
    background: #0060d1;
}

.geo-footer {
    margin-top: 40px;
    font-size: 1.05rem;
    color: #3a3a3c;
}

.geo-main-cta {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background: #007aff;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease;
}

.geo-main-cta:hover {
    background: #0060d1;
}

/* ===========================
   Animaciones Apple
   =========================== */

.pre-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/* ===========================
   Guide Section (Home)
   =========================== */

.guide-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.guide-container {
    max-width: 1100px;
    margin: 0 auto;
}

.guide-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111112;
    margin-bottom: 35px;
    letter-spacing: -0.03em;
    text-transform: none;
}

@media (min-width: 768px) {
    .guide-title {
        font-size: 2.3rem;
    }
}

.guide-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.guide-card {
    flex: 1 1 340px;
    background-color: #f8f8f8;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.guide-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111112;
    margin-bottom: 12px;
}

.guide-card-text {
    font-size: 0.95rem;
    color: #3a3a3c;
    line-height: 1.6;
    margin-bottom: 12px;
}

.guide-card-answer {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111112;
}

.guide-footer-text {
    font-size: 1.05rem;
    color: #3a3a3c;
    max-width: 800px;
    margin: 40px auto 20px;
    line-height: 1.6;
}

.guide-main-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #007aff;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.guide-main-cta:hover {
    background-color: #0060d1;
    transform: translateY(-2px);
}

/* Animación común (usa el mismo JS global de la home) */
.pre-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/* ===========================
   Servicios Urgentes 24h
   =========================== */

.urgent-block {
    background-color: #f7f7f7;
    padding: 60px 20px;
    margin: 0 auto 50px;
    max-width: 900px;
    border-radius: 18px;
    font-family: 'Inter', sans-serif;
    color: #111112;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.urgent-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.urgent-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background-color: #007aff;
    margin: 14px auto 25px;
    border-radius: 2px;
}

.urgent-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 10px;
}

.urgent-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #3a3a3c;
    max-width: 750px;
    margin: 0 auto 20px;
}

.urgent-cta {
    display: inline-block;
    background-color: #007aff;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color .25s ease, transform .25s ease;
    margin-top: 25px;
}

.urgent-cta:hover {
    background-color: #0060d1;
    transform: translateY(-2px);
}

/* Animación Apple */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .urgent-title {
        font-size: 1.6rem;
    }
    .urgent-subtitle {
        font-size: 1.1rem;
    }
    .urgent-text {
        font-size: 0.95rem;
    }
}
.ads-problem-section {
    padding: 70px 20px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.ads-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ads-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111112;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.ads-intro {
    font-size: 1.1rem;
    color: #3a3a3c;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.ads-stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-bottom: 40px;
}

.ads-stat-card {
    flex: 1 1 260px;
    background: #f7f7f7;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.ads-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ads-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #007aff;
    margin-bottom: 8px;
}

.ads-stat-text {
    font-size: 1rem;
    color: #3a3a3c;
    line-height: 1.5;
}

.ads-solution-text {
    font-size: 1.15rem;
    color: #111112;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-weight: 600;
}

.ads-cta {
    display: inline-block;
    padding: 14px 28px;
    background: #007aff;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
}

.ads-cta:hover {
    background: #0060d1;
    transform: translateY(-2px);
}

/* Animación Apple */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

