/* ===========================
   MV PLAY
=========================== */

body{

    background:#ffffff !important;

}

/* HERO */

.mv-hero{

    max-width:900px;

    margin:20px auto 50px;

    padding:45px 60px;

    border-radius:28px;

    background:
    radial-gradient(circle at top right,
    rgba(212,160,23,.18),
    transparent 30%),

    linear-gradient(
    135deg,
    #0d0d0d,
    #151515
    );

    color:#fff;

    box-shadow:
    0 20px 50px rgba(0,0,0,.18);

}

.mv-badge{

    background:#f2f2f2;

    padding:8px 16px;

    border-radius:999px;

    font-size:14px;

    display:inline-block;

    margin-bottom:25px;

}

.mv-hero h1

.mv-hero p{

    max-width:650px;

    font-size:20px;

    color:#d5d5d5;

    margin:0;

}

.mv-title{

    text-align:center !important;

    display:block;

    width:100%;

    margin:60px auto 35px auto;

    font-size:38px;

    font-weight:800;

    color:#111;

}

.mv-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

.mv-card{

    position:relative;

    overflow:hidden;
}

.mv-card::before{

    content:"";

    position:absolute;

    top:-60px;

    right:-60px;

    width:140px;

    height:140px;

    border-radius:50%;

    background:

    radial-gradient(
    rgba(212,160,23,.15),
    transparent
    );

}

/* CARDS */

.mv-services{

    display:flex;

    gap:35px;

    justify-content:center;

    flex-wrap:wrap;

    margin-bottom:70px;

}

.mv-service-card{

    background:#fff;

    border-radius:28px;

    padding:50px;

    min-height:420px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    text-align:left;

    transition:.35s;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

}

.mv-service-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);

}

.mv-icon{

    width:90px;
    height:90px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    margin-bottom:25px;

    color:#fff;

}

.mv-service-card h3{

    font-size:32px;

    margin-bottom:20px;

    color:#111;

}

.mv-service-card p{

    color:#666;

    line-height:1.7;

    min-height:90px;

}

/* colores */

.demo{

    border-top:6px solid #00c8d7;

}

.home{

    border-top:6px solid #d4a017;

}

.reseller{

    border-top:6px solid #8f3cff;

}

/* BOTONES */

.mv-btn{

    display:inline-block;

    background:#111;

    color:#fff !important;

    padding:15px 35px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.mv-btn:hover{

    background:#d4a017;

    color:#111 !important;

    text-decoration:none;

}

/* ======================================
   EXPANDIR CONTENEDOR WHMCS
====================================== */

.container{

    max-width:1500px !important;

}

.main-content{

    max-width:1500px !important;

}

/* HERO */

.mv-hero{

    max-width:1400px;

    margin:40px auto 80px auto;

}

/* SERVICIOS */

.mv-services{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

    max-width:1400px;

    margin:auto;

}

/* RESPONSIVE */

@media(max-width:1200px){

    .mv-services{

        grid-template-columns:
        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .mv-services{

        grid-template-columns:
        1fr;

    }

}

.demo .mv-icon{

    background:
    linear-gradient(
    135deg,
    #00bcd4,
    #00e5ff
    );

}

.home .mv-icon{

    background:
    linear-gradient(
    135deg,
    #d4a017,
    #ffcc33
    );

}

.reseller .mv-icon{

    background:
    linear-gradient(
    135deg,
    #7b2cff,
    #c14dff
    );

}

.mv-hero h1{

    font-size:68px;

    max-width:1000px;

    margin:auto;

    margin-bottom:25px;

    line-height:1.1;

}

.mv-hero p{

    max-width:850px;

    margin:auto;

    font-size:24px;

}

/* =====================================
   SOPORTE
===================================== */

.mv-support-row{

    max-width:1000px;

    margin:40px auto 80px auto;

    display:flex;

    gap:30px;

    justify-content:center;

    align-items:stretch;

}

.mv-support-card{

    flex:1;

    background:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}

.mv-support-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

.mv-support-icon{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:20px;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #d4a017,
    #ffcc33
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

}

.mv-support-card h3{

    font-size:24px;

    margin-bottom:15px;

    font-weight:700;

}

.mv-support-card p{

    color:#666;

    min-height:60px;

}

.mv-btn-secondary{

    display:inline-block;

    padding:12px 28px;

    background:#111;

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

}

.mv-btn-secondary:hover{

    color:#fff;

    text-decoration:none;

}

@media(max-width:768px){

    .mv-support-row{

        flex-direction:column;

    }

}

.mv-badge{

    display:inline-block;

    padding:8px 16px;

    background:#fff;

    color:#222;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

/* ===== FOOTER MV PLAY ===== */

.mv-footer{
    background:linear-gradient(180deg,#181818,#101010);
    border-top:3px solid #d4a017;
    padding-top:50px;
    margin-top:80px;
}

.mv-footer-logo{
    color:#d4a017;
    font-size:30px;
    font-weight:700;
    margin-bottom:10px;
}

.mv-footer-text{
    color:#bdbdbd;
    margin:0;
}

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

.mv-footer-links a{
    color:#e5e5e5;
    text-decoration:none;
    transition:all .25s ease;
}

.mv-footer-links a:hover{
    color:#d4a017;
    text-decoration:none;
}

.mv-footer-line{
    border-color:rgba(255,255,255,.08);
    margin:35px 0;
}

.mv-footer-stats{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:35px;
    color:#d4a017;
    font-weight:600;
    margin-bottom:30px;
}

.mv-footer-copy{
    text-align:center;
    color:#9f9f9f;
    padding-bottom:25px;
}

@media(max-width:768px){

    .mv-footer-links{
        margin-top:20px;
    }

    .mv-footer-stats{
        flex-direction:column;
        gap:12px;
    }

}
