:root{
    --primary:#0b63f3;
    --primary-dark:#073b9a;
    --primary-soft:#eaf2ff;
    --dark:#0f172a;
    --dark-soft:#1e293b;
    --text:#475569;
    --white:#ffffff;
    --light:#f8fbff;
    --border:#dbe6f3;
    --shadow:0 15px 40px rgba(11, 99, 243, 0.12);
    --shadow-soft:0 10px 30px rgba(15, 23, 42, 0.08);
    --radius:22px;
    --transition:all .3s ease;
    --container:1200px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--white);
    color:var(--text);
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(92%, var(--container));
    margin:0 auto;
}

.section{
    padding:90px 0;
}

/* Topbar */
.topbar{
    background:var(--dark);
    color:#e2e8f0;
    font-size:0.92rem;
}

.topbar-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:10px 0;
    flex-wrap:wrap;
}

.topbar-left,
.topbar-right{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.topbar a{
    color:#e2e8f0;
}

.topbar a:hover{
    color:var(--white);
}

/* Redes sociales */
.social-top,
.footer-social{
    display:flex;
    align-items:center;
    gap:10px;
}

.social-link{
    transition:var(--transition);
}

.social-logo-link{
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.12);
    overflow:hidden;
    flex-shrink:0;
}

.social-logo-link:hover{
    transform:translateY(-2px) scale(1.04);
    border-color:rgba(255,255,255,0.24);
}

.footer-social{
    margin-top:16px;
}

.footer-social-link{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.10);
}

.social-logo{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    display:block;
}

/* Header */
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,0.94);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
}

.header-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:16px 0;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.brand-logo{
    width:68px;
    height:68px;
    object-fit:contain;
    border-radius:14px;
}

.brand-info h1{
    font-size:1.2rem;
    color:var(--dark);
    margin-bottom:2px;
}

.brand-info span{
    font-size:.92rem;
    color:var(--text);
}

.main-nav ul{
    display:flex;
    align-items:center;
    gap:22px;
}

.main-nav a{
    font-weight:600;
    color:var(--dark-soft);
    transition:var(--transition);
}

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

.nav-btn{
    background:var(--primary);
    color:var(--white) !important;
    padding:11px 18px;
    border-radius:12px;
    box-shadow:var(--shadow);
}

.nav-btn:hover{
    background:var(--primary-dark);
}

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:transparent;
    border:none;
    cursor:pointer;
}

.menu-toggle span{
    width:26px;
    height:3px;
    background:var(--dark);
    border-radius:10px;
    display:block;
}

/* Hero */
.hero{
    padding:95px 0 80px;
    background:
        radial-gradient(circle at top right, rgba(11,99,243,0.20), transparent 28%),
        linear-gradient(135deg, #f5f9ff 0%, #ffffff 55%);
    overflow:hidden;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr .9fr;
    align-items:center;
    gap:40px;
}

.badge,
.section-tag,
.light-tag{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    font-size:.88rem;
    font-weight:700;
    letter-spacing:.4px;
}

.badge,
.section-tag{
    background:var(--primary-soft);
    color:var(--primary-dark);
}

.light-tag{
    background:rgba(255,255,255,0.15);
    color:var(--white);
}

.hero-content h2{
    font-size:3.1rem;
    line-height:1.12;
    color:var(--dark);
    margin:18px 0 20px;
}

.hero-content p{
    font-size:1.08rem;
    max-width:720px;
    margin-bottom:28px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:34px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:14px;
    font-weight:700;
    transition:var(--transition);
}

.btn-primary{
    background:var(--primary);
    color:var(--white);
    box-shadow:var(--shadow);
}

.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

.btn-outline{
    background:transparent;
    border:2px solid var(--primary);
    color:var(--primary);
}

.btn-outline:hover{
    background:var(--primary);
    color:var(--white);
}

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

.btn-light:hover{
    transform:translateY(-2px);
}

.btn-outline-light{
    border:2px solid rgba(255,255,255,0.7);
    color:var(--white);
    background:transparent;
}

.btn-outline-light:hover{
    background:rgba(255,255,255,0.12);
}

.hero-highlights{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.highlight-item{
    min-width:140px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:16px;
    padding:14px 16px;
    box-shadow:var(--shadow-soft);
}

.highlight-item strong{
    display:block;
    color:var(--dark);
    margin-bottom:4px;
}

.highlight-item span{
    color:var(--text);
    font-size:.95rem;
}

.hero-visual{
    position:relative;
    min-height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.main-card{
    width:100%;
    max-width:420px;
    background:rgba(255,255,255,0.95);
    border:1px solid var(--border);
    border-radius:30px;
    padding:36px 28px;
    text-align:center;
    box-shadow:var(--shadow);
}

.hero-logo{
    width:220px;
    max-width:100%;
    margin:0 auto 18px;
    object-fit:contain;
}

.main-card h3{
    font-size:1.6rem;
    color:var(--dark);
    margin-bottom:10px;
}

.hero-card-text{
    margin-top:14px;
    color:var(--text);
    font-size:0.98rem;
}

.floating-box{
    position:absolute;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:16px;
    padding:14px 18px;
    font-weight:700;
    color:var(--primary-dark);
    box-shadow:var(--shadow-soft);
}

.floating-box-1{
    top:70px;
    left:0;
}

.floating-box-2{
    right:0;
    bottom:90px;
}

/* Section heading */
.section-heading{
    text-align:center;
    max-width:780px;
    margin:0 auto 50px;
}

.section-heading h2,
.about-content h2,
.cta-panel h2{
    font-size:2.35rem;
    color:var(--dark);
    margin:14px 0;
}

/* Servicios */
.services{
    background:var(--light);
}

.cards-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.service-card,
.feature-box,
.experience-card,
.process-card,
.project-card{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px;
    box-shadow:var(--shadow-soft);
    transition:var(--transition);
}

.service-card:hover,
.feature-box:hover,
.experience-card:hover,
.process-card:hover,
.project-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.service-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg, var(--primary-soft), #dbeafe);
    color:var(--primary-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.7rem;
    margin-bottom:18px;
}

.service-card h3,
.feature-box h3,
.experience-card h3,
.process-card h3,
.project-card h3{
    color:var(--dark);
    margin-bottom:12px;
    font-size:1.18rem;
}

/* About */
.about-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:28px;
    align-items:start;
}

.about-content{
    background:#f8fbff;
    border:1px solid var(--border);
    border-radius:30px;
    padding:38px;
}

.about-content p{
    margin-top:14px;
}

.about-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:22px;
}

.about-badges span{
    background:var(--white);
    border:1px solid var(--border);
    color:var(--primary-dark);
    padding:10px 14px;
    border-radius:999px;
    font-size:.92rem;
    font-weight:700;
}

.about-side{
    display:grid;
    gap:20px;
}

/* Experience */
.experience{
    background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.experience-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
}

.experience-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    border-radius:16px;
    background:var(--primary-soft);
    color:var(--primary-dark);
    font-weight:800;
    margin-bottom:18px;
}

/* Proyectos */
.projects{
    background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
    align-items:stretch;
}

.project-card{
    position:relative;
    overflow:hidden;
}

.project-card-featured{
    grid-column:span 2;
    padding:0;
    min-height:340px;
    background:linear-gradient(135deg, #0b63f3 0%, #073b9a 100%);
}

.project-image{
    min-height:340px;
    height:100%;
    position:relative;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 25%),
        linear-gradient(135deg, #0b63f3 0%, #073b9a 100%);
    display:flex;
    align-items:flex-end;
}

.project-overlay{
    width:100%;
    padding:34px 30px;
    background:linear-gradient(180deg, rgba(7,59,154,0.05) 0%, rgba(7,59,154,0.88) 100%);
    color:var(--white);
}

.project-overlay h3{
    font-size:1.7rem;
    margin:14px 0 12px;
    color:var(--white);
}

.project-overlay p{
    color:rgba(255,255,255,0.92);
    max-width:620px;
    margin-bottom:20px;
}

.project-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,0.16);
    color:var(--white);
    font-size:0.88rem;
    font-weight:800;
}

.project-icon-box{
    width:64px;
    height:64px;
    border-radius:18px;
    background:linear-gradient(135deg, var(--primary-soft), #dbeafe);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.8rem;
    margin-bottom:18px;
}

.project-card p{
    color:var(--text);
    margin-bottom:18px;
}

.project-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:8px;
}

.project-meta span{
    background:#f8fbff;
    border:1px solid var(--border);
    color:var(--primary-dark);
    padding:8px 12px;
    border-radius:999px;
    font-size:0.85rem;
    font-weight:700;
}

/* Process */
.work-process{
    background:linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    position:relative;
}

.work-process .section-heading{
    margin-bottom:55px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
    align-items:stretch;
}

.process-card{
    position:relative;
    overflow:hidden;
    min-height:270px;
}

.process-card::before{
    content:"";
    position:absolute;
    inset:0 auto auto 0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.process-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg, var(--primary-soft), #dbeafe);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    font-size:1.9rem;
    box-shadow:inset 0 0 0 1px rgba(11,99,243,0.08);
}

.process-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(11,99,243,0.08);
    color:var(--primary-dark);
    font-size:.88rem;
    font-weight:800;
    margin-bottom:16px;
}

/* CTA */
.cta-panel{
    background:linear-gradient(135deg, #0b63f3 0%, #073b9a 100%);
    color:var(--white);
    text-align:center;
    border-radius:30px;
    padding:60px 24px;
    box-shadow:var(--shadow);
}

.cta-panel h2,
.cta-panel p{
    color:var(--white);
}

.contact-quick-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
    margin-top:28px;
}

.contact-quick-card{
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:18px;
    padding:18px;
    text-align:left;
    backdrop-filter:blur(6px);
}

.contact-quick-card strong{
    display:block;
    font-size:1rem;
    color:var(--white);
    margin-bottom:6px;
}

.contact-quick-card span{
    color:rgba(255,255,255,0.88);
    font-size:0.95rem;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:24px;
}

/* Footer */
.site-footer{
    background:var(--dark);
    padding:28px 0;
    color:#cbd5e1;
}

.footer-main{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:28px;
    padding-bottom:24px;
}

.footer-brand{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.footer-logo{
    width:72px;
    border-radius:16px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-links h4{
    color:var(--white);
    margin-bottom:4px;
    font-size:1rem;
}

.footer-links a,
.footer-links span{
    color:#cbd5e1;
    transition:var(--transition);
}

.footer-links a:hover{
    color:var(--white);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:18px;
    text-align:center;
    color:#94a3b8;
}

/* WhatsApp */
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    min-width:64px;
    height:58px;
    padding:0 18px;
    border-radius:999px;
    background:#25d366;
    color:#ffffff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:1rem;
    font-weight:700;
    box-shadow:0 14px 30px rgba(37, 211, 102, 0.28);
    z-index:1200;
    transition:all .3s ease;
}

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.03);
}

.whatsapp-img{
    width:26px;
    height:26px;
    object-fit:contain;
}

.whatsapp-text{
    white-space:nowrap;
    font-size:0.95rem;
}

/* Responsive */
@media (max-width: 1100px){
    .hero-content h2{
        font-size:2.6rem;
    }

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-visual{
        min-height:auto;
    }

    .floating-box{
        position:static;
        display:inline-block;
        margin:10px 6px 0;
    }

    .cards-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .about-grid,
    .experience-grid,
    .process-grid,
    .projects-grid{
        grid-template-columns:1fr 1fr;
    }

    .project-card-featured{
        grid-column:span 2;
    }

    .contact-quick-grid{
        grid-template-columns:1fr;
    }

    .footer-main{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 860px){
    .topbar{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:var(--white);
        border-bottom:1px solid var(--border);
        padding:0 20px;
        max-height:0;
        overflow:hidden;
        transition:var(--transition);
    }

    .main-nav.active{
        max-height:400px;
        padding:14px 20px 20px;
    }

    .main-nav ul{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .hero{
        padding:70px 0 60px;
    }

    .hero-content h2{
        font-size:2.1rem;
    }

    .section-heading h2,
    .about-content h2,
    .cta-panel h2{
        font-size:1.95rem;
    }

    .social-top{
        margin-top:4px;
    }
}

@media (max-width: 640px){
    .cards-grid,
    .experience-grid,
    .process-grid,
    .projects-grid,
    .footer-main{
        grid-template-columns:1fr;
    }

    .project-card-featured{
        grid-column:span 1;
    }

    .project-image{
        min-height:300px;
    }

    .project-overlay{
        padding:26px 22px;
    }

    .project-overlay h3{
        font-size:1.35rem;
    }

    .hero-actions,
    .cta-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .hero-highlights{
        flex-direction:column;
    }

    .about-content,
    .service-card,
    .feature-box,
    .experience-card,
    .process-card,
    .project-card,
    .main-card{
        padding:24px;
    }

    .brand-logo{
        width:58px;
        height:58px;
    }

    .brand-info h1{
        font-size:1rem;
    }

    .brand-info span{
        font-size:.82rem;
    }

    .hero-content h2{
        font-size:1.8rem;
    }

    .process-card{
        min-height:auto;
    }

    .footer-brand{
        flex-direction:column;
    }

    .topbar-right{
        width:100%;
        justify-content:space-between;
    }

    .whatsapp-float{
        right:16px;
        bottom:16px;
        width:54px;
        min-width:54px;
        height:54px;
        padding:0;
    }

    .whatsapp-img{
        width:28px;
        height:28px;
    }

    .whatsapp-text{
        display:none;
    }
}

body.modal-open{
    overflow:hidden;
}

.ticket-modal{
    position:fixed;
    inset:0;
    display:none;
    z-index:2000;
}

.ticket-modal.active{
    display:block;
}

.ticket-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(15, 23, 42, 0.65);
    backdrop-filter:blur(4px);
}

.ticket-modal-box{
    position:relative;
    width:min(92%, 900px);
    max-height:90vh;
    overflow-y:auto;
    margin:5vh auto 0;
    background:var(--white);
    border-radius:28px;
    box-shadow:0 25px 60px rgba(15, 23, 42, 0.25);
    padding:30px;
    z-index:2;
}

.ticket-modal-close{
    position:absolute;
    top:16px;
    right:16px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f1f5f9;
    color:var(--dark);
    font-size:1.5rem;
    cursor:pointer;
}

.ticket-modal-header{
    margin-bottom:24px;
}

.ticket-modal-header h2{
    color:var(--dark);
    margin:12px 0 8px;
    font-size:2rem;
}

.ticket-query-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:20px;
}

.ticket-form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.ticket-form-group label{
    font-weight:700;
    color:var(--dark);
}

.ticket-form-group input{
    width:100%;
    border:1px solid var(--border);
    border-radius:14px;
    padding:14px 15px;
    font-size:1rem;
    color:var(--dark);
    background:#fff;
    outline:none;
    transition:.25s ease;
}

.ticket-form-group input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(11, 99, 243, 0.10);
}

.ticket-form-actions{
    grid-column:1 / -1;
    display:flex;
    justify-content:flex-start;
}

.ticket-query-message{
    padding:14px 16px;
    border-radius:14px;
    margin-bottom:16px;
    font-size:.95rem;
}

.ticket-query-message.error{
    background:#fef2f2;
    border:1px solid #fca5a5;
    color:#991b1b;
}

.ticket-result-card{
    border:1px solid var(--border);
    border-radius:22px;
    padding:22px;
    background:#f8fbff;
}

.ticket-result-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
    margin-bottom:20px;
}

.ticket-result-grid div{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:14px;
    padding:14px;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.ticket-result-grid strong,
.ticket-result-block strong{
    color:var(--dark);
}

.ticket-result-block{
    margin-top:16px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:14px;
    padding:16px;
}

.ticket-followup-list{
    display:grid;
    gap:12px;
    margin-top:12px;
}

.ticket-followup-item{
    border:1px solid var(--border);
    border-radius:14px;
    padding:14px;
    background:#f8fbff;
}

.ticket-followup-item small{
    display:block;
    margin-top:8px;
    color:#64748b;
}

.ticket-state-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 12px;
    border-radius:999px;
    font-size:.85rem;
    font-weight:800;
    width:fit-content;
}

.state-pending{
    background:#fef3c7;
    color:#92400e;
}

.state-assigned{
    background:#dbeafe;
    color:#1d4ed8;
}

.state-progress{
    background:#e0e7ff;
    color:#4338ca;
}

.state-waiting{
    background:#fde68a;
    color:#92400e;
}

.state-resolved{
    background:#dcfce7;
    color:#166534;
}

.state-closed{
    background:#e5e7eb;
    color:#374151;
}

.state-default{
    background:#e2e8f0;
    color:#334155;
}

@media (max-width: 768px){
    .ticket-modal-box{
        width:min(94%, 900px);
        padding:22px;
    }

    .ticket-query-form,
    .ticket-result-grid{
        grid-template-columns:1fr;
    }

    .ticket-modal-header h2{
        font-size:1.6rem;
    }
}

.ticket-modal.active{
    display:block !important;
}

.soporte-page {
    padding: 25px;
}

.support-hero {
    background: linear-gradient(135deg, #eaf4ff, #ffffff);
    border-radius: 22px;
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.support-badge {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}

.support-hero h1 {
    font-size: 38px;
    margin: 15px 0;
    color: #1f2937;
}

.support-hero p {
    max-width: 780px;
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
}

.support-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.support-actions.center {
    justify-content: center;
}

.btn-support-primary,
.btn-support-whatsapp {
    padding: 13px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
    display: inline-block;
}

.btn-support-primary {
    background: #2563eb;
    color: #fff;
}

.btn-support-primary:hover {
    background: #1d4ed8;
    color: #fff;
}

.btn-support-whatsapp {
    background: #22c55e;
    color: #fff;
}

.btn-support-whatsapp:hover {
    background: #16a34a;
    color: #fff;
}

.support-section {
    margin-bottom: 40px;
}

.support-section h2 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 10px;
}

.support-subtitle {
    color: #6b7280;
    margin-bottom: 25px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.support-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    border: 1px solid #e5e7eb;
    transition: 0.2s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.support-card h3 {
    color: #1f2937;
    margin-bottom: 10px;
}

.support-card p {
    color: #6b7280;
    line-height: 1.5;
}

.support-card.recommendation strong {
    display: block;
    color: #2563eb;
    font-size: 18px;
    margin-bottom: 10px;
}

.support-cta {
    text-align: center;
    background: #111827;
    color: #fff;
    border-radius: 22px;
    padding: 40px 25px;
    margin-bottom: 30px;
}

.support-cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.support-cta p {
    color: #d1d5db;
}

@media (max-width: 1200px) {
    .support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-hero h1 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .soporte-page {
        padding: 15px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-hero {
        padding: 28px;
    }

    .support-hero h1 {
        font-size: 26px;
    }

    .support-actions {
        flex-direction: column;
    }

    .btn-support-primary,
    .btn-support-whatsapp {
        text-align: center;
        width: 100%;
    }
}

/*============ GUIA MANTENIMIENTO ============*/

.maintenance-guide{
    margin:60px 0;
    padding:50px 35px;
    background:#f8fbff;
    border-radius:25px;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    }
    
    .guide-header{
    text-align:center;
    max-width:900px;
    margin:auto auto 40px;
    }
    
    .guide-badge{
    background:#2563eb;
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    display:inline-block;
    margin-bottom:18px;
    }
    
    .guide-header h2{
    font-size:38px;
    margin-bottom:15px;
    color:#0f172a;
    }
    
    .guide-header p{
    font-size:18px;
    color:#64748b;
    line-height:1.7;
    }
    
    .maintenance-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-top:35px;
    }
    
    .maintenance-box{
    background:#fff;
    padding:28px;
    border-radius:20px;
    border:1px solid #dbeafe;
    box-shadow:0 5px 18px rgba(0,0,0,.06);
    transition:.25s;
    }
    
    .maintenance-box:hover{
    transform:translateY(-5px);
    }
    
    .maintenance-box h3{
    font-size:20px;
    margin-bottom:12px;
    color:#111827;
    }
    
    .maintenance-box span{
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    padding:8px 14px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:15px;
    }
    
    .maintenance-box p{
    line-height:1.6;
    color:#6b7280;
    }
    
    @media(max-width:1200px){
    .maintenance-grid{
    grid-template-columns:repeat(3,1fr);
    }
    }
    
    @media(max-width:900px){
    .maintenance-grid{
    grid-template-columns:repeat(2,1fr);
    }
    
    .guide-header h2{
    font-size:30px;
    }
    }
    
    @media(max-width:600px){
    
    .maintenance-guide{
    padding:30px 20px;
    }
    
    .maintenance-grid{
    grid-template-columns:1fr;
    }
    
    .guide-header h2{
    font-size:26px;
    }
    }

    .service-link{
        display:block;
        text-decoration:none;
        color:inherit;
        }
        
        .service-link .service-card{
        height:100%;
        cursor:pointer;
        }
        
        .service-link:hover .service-card{
        transform:translateY(-8px);
        box-shadow:var(--shadow);
        }
        
        .service-link h3{
        transition:.3s;
        }
        
        .service-link:hover h3{
        color:var(--primary);
        }

/*============ SOCIAL SECTION ============*/

.social-section{
    padding:80px 0;
    background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.social-section .section-heading{
    margin-bottom:45px;
}

.social-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:30px !important;
    align-items:stretch !important;
    width:100% !important;
}

.social-frame{
    width:100% !important;
    max-width:none !important;
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    overflow:hidden;
    border:1px solid #e5e7eb;
}

.social-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.social-icon{
    width:65px;
    height:65px;
    border-radius:20px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    flex-shrink:0;
}

.social-header h3{
    margin:0;
    font-size:28px;
    color:var(--dark);
}

.social-header p{
    margin-top:5px;
    color:#64748b;
}

.social-iframe-wrap,
.social-placeholder{
    width:100%;
    min-height:500px;
    border-radius:24px;
    background:#f8fbff;
    overflow:hidden;
}

.social-iframe-wrap{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    border:1px solid #dbeafe;
}

.social-frame iframe{
    max-width:100%;
}

.social-placeholder{
    border:2px dashed #dbeafe;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:35px;
}

.placeholder-content{
    width:100%;
    max-width:420px;
    text-align:center;
}

.placeholder-content h4{
    font-size:30px;
    margin-bottom:20px;
    color:var(--dark);
}

.placeholder-content p{
    font-size:17px;
    color:#64748b;
    margin-bottom:20px;
}

.placeholder-content code{
    display:inline-block;
    background:#0f172a;
    color:#fff;
    padding:14px 20px;
    border-radius:14px;
    font-size:14px;
    margin-top:10px;
}

@media(max-width:900px){
    .social-grid{
        grid-template-columns:1fr !important;
    }

    .social-iframe-wrap,
    .social-placeholder{
        min-height:420px;
    }
}

@media(max-width:640px){
    .social-section{
        padding:60px 0;
    }

    .social-frame{
        padding:22px;
    }

    .social-header{
        align-items:flex-start;
    }

    .social-icon{
        width:54px;
        height:54px;
        font-size:25px;
    }

    .social-header h3{
        font-size:22px;
    }
}

/* FIX REDES SOCIALES */
#redes-sociales .social-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:30px !important;
    align-items:stretch !important;
    width:100% !important;
}

#redes-sociales .social-frame{
    width:100% !important;
    max-width:none !important;
    display:block !important;
}

#redes-sociales .social-iframe-wrap,
#redes-sociales .social-placeholder{
    width:100%;
    min-height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8fbff;
    border-radius:22px;
    overflow:hidden;
}

#redes-sociales iframe{
    max-width:100%;
}

@media(max-width:900px){
    #redes-sociales .social-grid{
        grid-template-columns:1fr !important;
    }
}