/* ===========================
   SERVICE DETAIL STYLES - brockdev
   Shared by specific service pages
   =========================== */

/* Header Detail */
.service-detail {
    min-height: 100vh;
    padding: 100px 20px;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 50%;
    border: 3px solid #333;
    transition: all 0.3s ease;
}

.service-icon i { font-size: 7rem; color: var(--primary-color); }

.service-header h1 {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-header p { font-size: 2rem; color: #aaa; }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: #111;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.feature-card i { font-size: 4rem; color: var(--primary-color); margin-bottom: 20px; }
.feature-card h3 { font-size: 2.2rem; font-weight: 600; color: #fff; margin-bottom: 15px; }
.feature-card p { font-size: 1.6rem; color: #aaa; line-height: 1.6; }

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: #111;
    border: 2px solid #333;
    border-radius: 20px;
}

.cta-section h2 { font-size: 3.5rem; font-weight: 600; color: #fff; margin-bottom: 20px; }
.cta-section p { font-size: 1.8rem; color: #aaa; margin-bottom: 40px; }

.cta-btn {
    display: inline-block;
    padding: 15px 50px;
    background: var(--primary-color);
    border-radius: 50px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

/* Values Section (from old styles) */
.home { display: flex; justify-content: center; align-items: center; padding: 6rem; }
.home-content h3 { font-size: 3rem; margin-bottom: 1rem; color: var(--primary-color); text-align: center; }
.text { font-size: 1.6rem; text-align: justify; width: 70%; margin: 0 auto 40px; }

.valores__content { display: flex; flex-flow: row wrap; justify-content: center; gap: 40px; }
.content__stats { width: 450px; padding: 10px; margin: 15px; }
.content__stats i { color: var(--primary-color); margin-right: 10px; }
.content__stats h4 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 15px; text-align: center; }
.content__stats ul { list-style: none; }
.content__stats ul li { font-size: 1.35rem; margin-bottom: 10px; display: flex; align-items: center; }

/* Responsive */
@media(max-width: 768px) {
    .service-icon { width: 120px; height: 120px; }
    .service-icon i { font-size: 5rem; }
    .service-header h1 { font-size: 3.5rem; }
    .service-header p { font-size: 1.6rem; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 2.5rem; }
    .cta-section p { font-size: 1.6rem; }
    .text { width: 100%; }
    .content__stats { width: 100%; padding: 0 20px; }
}
