/* =========================================
   DETALLE DE SERVICIO (LANDING PAGE SEO)
   ========================================= */

/* --- FONDO GLOBAL (Mantiene la identidad) --- */
.detail-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/assets/img/contacto.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-bottom: 80px;
    color: #fff;
}

/* --- HERO HEADER (Título Grande) --- */
.detail-hero {
    padding: 100px 20px 60px;
    text-align: center;
}

.detail-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 20px rgba(41, 197, 246, 0.8);
}

.detail-hero .kicker {
    display: block;
    color: var(--c-yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* --- CONTENEDOR PRINCIPAL (PANEL GLASS) --- */
.detail-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* --- DISTRIBUCIÓN DEL CONTENIDO --- */
.detail-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Columna texto ancha / Sidebar angosta */
    gap: 0;
}

.main-info {
    padding: 50px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.sidebar-info {
    padding: 50px;
    background: rgba(0,0,0,0.2); /* Un poco más oscuro */
}

/* --- TIPOGRAFÍA Y TEXTOS --- */
.main-info h2 {
    color: var(--c-cyan);
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.main-info h2:first-child { margin-top: 0; }

.main-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.main-info ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.main-info ul li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

/* --- ELEMENTOS DEL SIDEBAR --- */
.sticky-widget {
    position: sticky;
    top: 100px;
}

.sidebar-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.tech-specs {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.tech-specs h3 {
    color: var(--c-yellow);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
    font-size: 0.9rem;
}

.spec-row span:last-child {
    font-weight: 700;
    color: #fff;
}

/* --- BOTÓN GRANDE DE CTA --- */
.btn-cta-full {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--c-magenta);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(240, 56, 107, 0.3);
}

.btn-cta-full:hover {
    background: #fff;
    color: var(--c-magenta);
    transform: translateY(-3px);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .detail-content {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
    }
    .main-info, .sidebar-info {
        padding: 30px;
        border: none;
    }
    .detail-hero h1 {
        font-size: 2.5rem;
    }
}