/* ===============================================
   MWM — SERVICIOS PAGE STYLES
   Solo estilos específicos de la página de Servicios.
   Los estilos base vienen de main.css.
   =============================================== */

/* -----------------------------------------------
   1. VARIABLES EXTENDIDAS (Solo para Servicios)
   ----------------------------------------------- */
:root {
    --srv-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --srv-gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --srv-text-muted: #64748b;
    --srv-border: #e2e8f0;
    --srv-bg-light: #f8fafc;
    --srv-card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --srv-card-shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
}

/* -----------------------------------------------
   2. HERO SECTION
   ----------------------------------------------- */
.services-hero {
    background: linear-gradient(160deg, #ffffff 0%, #f1f5f9 50%, #ede9fe 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.services-hero .hero-text {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    padding: 0.5rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.services-hero .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.12;
    color: var(--dark);
}

.services-hero .hero-description {
    font-size: 1.15rem;
    color: var(--srv-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--srv-border);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--srv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--srv-text-muted);
    font-weight: 500;
    margin-top: 0.35rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    padding: 0.5rem 1.15rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-badge i {
    color: var(--primary);
    width: 1rem;
    height: 1rem;
}

.section-badge span {
    background: linear-gradient(90deg, var(--primary), #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -----------------------------------------------
   3. TARJETAS DE SERVICIO PRINCIPAL
   ----------------------------------------------- */
.services-detailed {
    padding: 6rem 0;
    background: var(--white);
}

.service-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-card.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.service-card.reverse .service-info {
    order: 2;
}

.service-card.reverse .service-image-container {
    order: 1;
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.25);
}

.icon-purple {
    background: var(--srv-gradient);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.icon-green {
    background: var(--srv-gradient-green);
}

.icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.icon-indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.icon-teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.icon-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.service-icon i {
    width: 28px;
    height: 28px;
}

/* Service Badge */
.service-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.badge-purple {
    background: #ede9fe;
    color: #5b21b6;
}

.badge-blue {
    background: #dbeafe;
    color: #1e40af;
}

.badge-green {
    background: #d1fae5;
    color: #047857;
}

.badge-orange {
    background: #ffedd5;
    color: #c2410c;
}

.service-name {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-card .service-description {
    font-size: 1.05rem;
    color: var(--srv-text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.feature i {
    color: var(--primary);
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature span {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.4;
}

/* Pricing Box */
.service-pricing-box {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--srv-border);
    margin-bottom: 2rem;
}

.pricing-header {
    font-size: 0.8rem;
    color: var(--srv-text-muted);
    margin-bottom: 0.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--srv-text-muted);
    font-weight: 500;
}

.pricing-note {
    font-size: 0.82rem;
    color: var(--srv-text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 10px -2px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.btn-whatsapp i {
    width: 18px;
    height: 18px;
}

/* Service Image */
.service-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--srv-card-shadow-hover);
    background: #f8fafc;
}

.service-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-container img {
    transform: scale(1.03);
}

/* -----------------------------------------------
   4. SERVICIOS ADICIONALES (Grid)
   ----------------------------------------------- */
.services-grid-section {
    padding: 6rem 0;
    background: var(--srv-bg-light);
}

.services-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.extra-card {
    background: var(--white);
    border: 1px solid var(--srv-border);
    border-radius: var(--radius);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--srv-card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.extra-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.extra-card:nth-child(2).animate {
    transition-delay: 0.05s;
}

.extra-card:nth-child(3).animate {
    transition-delay: 0.1s;
}

.extra-card:nth-child(4).animate {
    transition-delay: 0.15s;
}

.extra-card:nth-child(5).animate {
    transition-delay: 0.2s;
}

.extra-card:nth-child(6).animate {
    transition-delay: 0.25s;
}

.extra-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--srv-card-shadow-hover);
    border-color: rgba(79, 70, 229, 0.15);
}

.extra-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.extra-icon i {
    width: 24px;
    height: 24px;
}

.extra-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.extra-description {
    font-size: 0.95rem;
    color: var(--srv-text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.extra-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.extra-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.extra-features li i {
    color: var(--secondary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.extra-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: auto;
    transition: gap 0.3s ease, color 0.3s ease;
}

.extra-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

.extra-link i {
    width: 16px;
    height: 16px;
}

/* -----------------------------------------------
   5. CATÁLOGO PDF
   ----------------------------------------------- */
.catalog-section {
    padding: 3rem 0;
    background: var(--white);
}

.catalog-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px -8px rgba(30, 27, 75, 0.3);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.catalog-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.catalog-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.catalog-info>i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    opacity: 0.8;
}

.catalog-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.catalog-info p {
    font-size: 0.9rem;
    color: #a5b4fc;
    margin: 0;
}

.btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: #312e81;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-catalog:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #312e81;
}

.btn-catalog i {
    width: 18px;
    height: 18px;
}

/* -----------------------------------------------
   6. PLANES EMPRESARIALES
   ----------------------------------------------- */
.enterprise-section {
    padding: 6rem 0;
    background: var(--white);
}

.enterprise-card {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    border-radius: 24px;
    padding: 4rem;
    color: var(--white);
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.enterprise-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.enterprise-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #c7d2fe;
}

.enterprise-badge i {
    width: 16px;
    height: 16px;
}

.enterprise-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.text-gradient-light {
    background: linear-gradient(90deg, #a5b4fc, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enterprise-description {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 520px;
}

.enterprise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ent-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.ent-feature i {
    width: 20px;
    height: 20px;
    color: #a5b4fc;
    flex-shrink: 0;
}

.btn-enterprise {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #a5b4fc, #818cf8);
    color: #0f172a;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px -4px rgba(165, 180, 252, 0.3);
}

.btn-enterprise:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -4px rgba(165, 180, 252, 0.5);
    color: #0f172a;
}

.btn-enterprise i {
    width: 20px;
    height: 20px;
}

/* Enterprise Graphic */
.enterprise-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.enterprise-graphic {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(165, 180, 252, 0.15);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: pulse-ring 4s ease-in-out infinite;
}

.ring-2 {
    width: 75%;
    height: 75%;
    animation: pulse-ring 4s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 50%;
    height: 50%;
    animation: pulse-ring 4s ease-in-out infinite 1s;
}

@keyframes pulse-ring {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.graphic-center {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
}

.graphic-center i {
    width: 28px;
    height: 28px;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.graphic-center span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------------------------
   7. PROCESO
   ----------------------------------------------- */
.process-section {
    padding: 6rem 0;
    background: var(--srv-bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: var(--white);
    padding: 2.25rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--srv-card-shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.process-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-card:nth-child(2).animate {
    transition-delay: 0.08s;
}

.process-card:nth-child(3).animate {
    transition-delay: 0.16s;
}

.process-card:nth-child(4).animate {
    transition-delay: 0.24s;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--srv-card-shadow-hover);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--srv-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 15px -3px rgba(79, 70, 229, 0.3);
}

.process-line {
    position: absolute;
    top: 3.5rem;
    right: -1.25rem;
    width: 2.5rem;
    height: 2px;
    background: var(--srv-border);
}

.process-card:last-child .process-line {
    display: none;
}

.process-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.process-card p {
    font-size: 0.92rem;
    color: var(--srv-text-muted);
    line-height: 1.6;
}

/* -----------------------------------------------
   8. CTA FINAL
   ----------------------------------------------- */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-description {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    color: var(--primary);
}

.btn-cta-primary i,
.btn-cta-whatsapp i {
    width: 18px;
    height: 18px;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-cta-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

/* -----------------------------------------------
   9. RESPONSIVE
   ----------------------------------------------- */
@media (max-width: 1024px) {
    .services-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .services-hero .hero-text {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .service-card,
    .service-card.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .service-card.reverse .service-info {
        order: 1;
    }

    .service-card.reverse .service-image-container {
        order: 2;
    }

    .service-features {
        text-align: left;
    }

    .action-buttons {
        justify-content: center;
    }

    .enterprise-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
    }

    .enterprise-description {
        max-width: 100%;
    }

    .enterprise-features {
        justify-items: center;
    }

    .enterprise-visual {
        display: none;
    }

    .catalog-card {
        flex-direction: column;
        text-align: center;
    }

    .catalog-info {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .service-features {
        grid-template-columns: 1fr;
    }

    .enterprise-features {
        grid-template-columns: 1fr;
    }

    .amount {
        font-size: 2.5rem;
    }

    .process-line {
        display: none;
    }

    .services-extras-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn-cta-primary,
    .cta-actions .btn-cta-whatsapp {
        width: 100%;
    }

    .enterprise-card {
        padding: 2rem 1.5rem;
    }
}

/* -----------------------------------------------
   10. ACCESIBILIDAD
   ----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    .service-card,
    .extra-card,
    .process-card,
    .enterprise-card,
    .catalog-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .graphic-ring {
        animation: none !important;
    }

    .service-image-container img {
        transition: none !important;
    }
}

.btn:focus-visible,
.extra-link:focus-visible,
.btn-enterprise:focus-visible,
.btn-catalog:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}
