/* ============================================
   administracion-vps.css — Estilos para administracion-vps.html
   ============================================ */

/* Hero */
.vps-admin-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #111827 0%, #1e3a8a 100%);
    overflow: hidden;
}

.vps-admin-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/server.png') center/cover no-repeat;
    opacity: 0.08;
}

.vps-admin-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.vps-admin-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.vps-admin-hero h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.vps-admin-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 30px;
}

.vps-admin-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.vps-admin-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.vps-admin-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* Notice */
.vps-admin-notice {
    background: #fef3c7;
    padding: 20px 0;
    border-bottom: 1px solid #fbbf24;
}

.vps-admin-notice-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.vps-admin-notice-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #f59e0b;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 2px;
}

.vps-admin-notice-content strong {
    display: block;
    font-size: 0.95rem;
    color: #92400e;
    margin-bottom: 6px;
}

.vps-admin-notice-content p {
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.6;
    margin: 0;
}

.vps-admin-notice-content p + p {
    margin-top: 4px;
}

/* Content */
.vps-admin-content {
    padding: 80px 0;
}

/* Intro */
.vps-admin-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.vps-admin-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.vps-admin-intro p + p {
    margin-top: 15px;
}

/* Section Title */
.vps-admin-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 45px;
}

/* Features Grid */
.vps-admin-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vps-admin-feature {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.vps-admin-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    border-color: #d1d5db;
}

.vps-admin-feature-icon {
    width: 46px;
    height: 46px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.vps-admin-feature h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.vps-admin-feature p {
    font-size: 0.93rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Services List */
.vps-admin-services {
    margin-top: 50px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 45px 40px;
    border: 1px solid #e2e8f0;
}

.vps-admin-services h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.vps-admin-services > p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 30px;
}

.vps-admin-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.vps-admin-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 0.92rem;
    color: #374151;
    font-weight: 500;
}

.vps-admin-service-item i {
    color: #10b981;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Human Section */
.vps-admin-human {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.vps-admin-human-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vps-admin-human-content p {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.8;
}

.vps-admin-human-content p + p {
    margin-top: 15px;
}

.vps-admin-human-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vps-admin-human-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Ideal Para */
.vps-admin-ideal {
    margin-top: 60px;
}

.vps-admin-ideal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.vps-admin-ideal-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.vps-admin-ideal-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.vps-admin-ideal-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vps-admin-ideal-card h3 i {
    color: #f59e0b;
}

.vps-admin-ideal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vps-admin-ideal-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
    color: #4b5563;
}

.vps-admin-ideal-list li:last-child {
    border-bottom: none;
}

.vps-admin-ideal-list li i {
    color: #10b981;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Why FH */
.vps-admin-why {
    margin-top: 60px;
    background: linear-gradient(135deg, #111827 0%, #1e3a8a 100%);
    border-radius: 16px;
    padding: 50px 45px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.vps-admin-why h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.vps-admin-why p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.vps-admin-why p + p {
    margin-top: 15px;
}

.vps-admin-why-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vps-admin-why-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* CTA */
.vps-admin-cta {
    margin-top: 60px;
    text-align: center;
    background: #f8fafc;
    border-radius: 16px;
    padding: 50px 40px;
    border: 1px solid #e2e8f0;
}

.vps-admin-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.5;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .vps-admin-hero h1 { font-size: 2rem; }
    .vps-admin-features { grid-template-columns: 1fr; }
    .vps-admin-services-grid { grid-template-columns: 1fr; }
    .vps-admin-human { grid-template-columns: 1fr; }
    .vps-admin-ideal-grid { grid-template-columns: 1fr; }
    .vps-admin-why { grid-template-columns: 1fr; }
    .vps-admin-services { padding: 30px 20px; }
}
