/* ===== SERVICIOS IT — Dark modern theme ===== */

/* --- Hero --- */
#srv-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

#srv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 84, 0, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.srv-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 90px 20px;
    animation: slideInUp 0.8s ease forwards;
}

.srv-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FF5400;
    margin-bottom: 14px;
    display: block;
}

.srv-hero-inner h1 {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 0 0 18px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.srv-hero-inner h1 span {
    color: #FF5400;
}

.srv-hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Grid section --- */
#srv-section {
    background: #0d0d0d;
    padding: 90px 0 100px;
}

.srv-section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FF5400;
    text-align: center;
    display: block;
    margin-bottom: 12px;
}

.srv-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    text-align: center;
    margin: 0 0 14px;
}

.srv-section-title span {
    color: #FF5400;
}

.srv-section-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    text-align: center;
    margin: 0 auto 60px;
    max-width: 580px;
}

/* --- Service cards grid --- */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

@media (max-width: 600px) {
    .srv-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* --- Individual card --- */
.srv-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid #FF5400;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: background 0.3s ease,
                transform 0.35s cubic-bezier(0.23,1,0.32,1),
                box-shadow 0.35s ease;
}

.srv-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 24px rgba(255,84,0,0.07);
    border-color: rgba(255,84,0,0.4);
}

.srv-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,84,0,0.1);
    border: 1px solid rgba(255,84,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.srv-card:hover .srv-card-icon {
    background: rgba(255,84,0,0.18);
    border-color: rgba(255,84,0,0.5);
}

.srv-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: #FF5400;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.srv-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: 0.2px;
}

.srv-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* --- CTA --- */
#srv-cta {
    background: #111;
    padding: 90px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.srv-cta-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 60px 52px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.srv-cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255,84,0,0.09) 0%, transparent 70%);
    pointer-events: none;
}

.srv-cta-text {
    flex: 1;
    min-width: 260px;
    position: relative;
    z-index: 1;
}

.srv-cta-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.srv-cta-text p {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

.srv-cta-action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btn-srv-cta {
    display: inline-block;
    padding: 15px 42px;
    background: #FF5400;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 6px;
    border: 2px solid #FF5400;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 24px rgba(255,84,0,0.4);
}

.btn-srv-cta:hover {
    background: transparent;
    color: #FF5400 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,84,0,0.2);
}

/* --- Reveal --- */
.reveal-item {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .srv-hero-inner h1 { font-size: 36px; }
    .srv-section-title { font-size: 28px; }
    .srv-cta-card { padding: 44px 32px; }
    .srv-cta-text h2 { font-size: 24px; }
}

@media (max-width: 767px) {
    .srv-hero-inner h1 { font-size: 28px; }
    .srv-cta-card { padding: 36px 24px; }
}
