/* ===== SERVICIOS HERO PREMIUM ===== */
.servicios-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(-45deg, #0a0a0a, #1a1a1a, #2d1b00, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

.servicios-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 99, 3, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 99, 3, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.servicios-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.servicios-badge {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(255, 99, 3, 0.1);
    border: 2px solid #ff6303;
    border-radius: 50px;
    color: #ff6303;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.servicios-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #ff6303 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.servicios-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.servicios-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6303, #ff8c42);
    margin: 30px auto 0;
    border-radius: 2px;
    animation: expandLine 1s ease;
}

@keyframes expandLine {
    0% { width: 0; }
    100% { width: 100px; }
}

/* ===== ESTADÍSTICAS ===== */
.servicios-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 99, 3, 0.3);
}

.servicios-stats .stat-item {
    text-align: center;
}

.servicios-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6303;
    margin-bottom: 10px;
    line-height: 1;
}

.servicios-stats .stat-item p {
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== CTA DESTACADA "¿Qué deseas construir?" ===== */
.servicios-cta-destacada {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.servicios-cta-destacada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 99, 3, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 99, 3, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-destacada-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 2px solid rgba(255, 99, 3, 0.3);
    backdrop-filter: blur(10px);
}

.cta-destacada-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(255, 99, 3, 0.15);
    border: 2px solid #ff6303;
    border-radius: 50px;
    color: #ff6303;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-destacada-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #ff6303 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-destacada-text {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-destacada-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #ff6303 0%, #ff8c42 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 99, 3, 0.4);
}

.cta-destacada-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 99, 3, 0.6);
    color: #fff;
}

.cta-destacada-btn i {
    font-size: 1.3rem;
}

.cta-destacada-btn i:last-child {
    transition: transform 0.3s ease;
}

.cta-destacada-btn:hover i:last-child {
    transform: translateX(8px);
}

/* ===== SEPARADORES ===== */
.servicios-separador {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.separador-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6303, transparent);
    opacity: 0.5;
}

.separador-texto {
    color: #ff6303;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    padding: 10px 25px;
    border: 2px solid rgba(255, 99, 3, 0.3);
    border-radius: 50px;
    background: rgba(255, 99, 3, 0.05);
}

/* ===== MEJORAS VISUALES DE TARJETAS ===== */
.servicio-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(37, 37, 37, 0.95) 100%);
    border: 1px solid rgba(255, 99, 3, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.servicio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 99, 3, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.servicio-card:hover::after {
    opacity: 1;
}

.servicio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(255, 99, 3, 0.25);
    border-color: rgba(255, 99, 3, 0.4);
}

.servicio-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 99, 3, 0.05), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.servicio-card:hover .servicio-card-shine {
    left: 100%;
}

/* ===== ICONOS ===== */
.servicio-icon-wrapper {
    background: linear-gradient(135deg, #ff6303 0%, #ff8c42 100%);
    border-radius: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 99, 3, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.servicio-card:hover .servicio-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 99, 3, 0.5);
}

/* ===== BADGES ===== */
.servicio-badge-cat {
    background: linear-gradient(135deg, #ff6303, #ff8c42);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border: none;
}

.servicio-badge-cat.principal {
    padding: 8px 18px;
    font-size: 0.75rem;
    box-shadow: 0 5px 15px rgba(255, 99, 3, 0.4);
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== BOTONES ===== */
.servicio-btn {
    background: linear-gradient(135deg, #ff6303 0%, #ff8c42 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 99, 3, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.servicio-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 99, 3, 0.5);
    color: #fff;
}

.servicio-btn i:last-child {
    transition: transform 0.3s ease;
}

.servicio-btn:hover i:last-child:not(.fa-calculator) {
    transform: translateX(5px);
}

/* ===== HERRAMIENTAS GRID ===== */
.herramientas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.herramientas-grid .servicio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 580px;
}

.herramientas-grid .servicio-card.destacada {
    min-height: 620px;
    border: 2px solid #ff6303;
    box-shadow: 0 0 40px rgba(255, 99, 3, 0.2);
}

.herramientas-grid .servicio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    min-height: 90px;
}

.herramientas-grid .servicio-icon-wrapper {
    width: 70px;
    height: 70px;
    min-width: 70px;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.herramientas-grid .servicio-icon-wrapper.destacado {
    width: 80px;
    height: 80px;
    min-width: 80px;
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6303 0%, #ff8c42 50%, #ff6303 100%);
    background-size: 200% 200%;
    animation: iconPulse 3s ease infinite;
}

.herramientas-grid .servicio-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    min-height: 75px;
    display: flex;
    align-items: flex-start;
    color: #fff;
    font-weight: 600;
}

.herramientas-grid .servicio-title.destacado {
    min-height: 85px;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #fff 0%, #ff6303 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.herramientas-grid .servicio-desc {
    flex-grow: 1;
    margin-bottom: 25px;
    min-height: 80px;
    line-height: 1.6;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.herramientas-grid .servicio-features {
    margin-bottom: 30px;
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.herramientas-grid .servicio-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #888;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.herramientas-grid .servicio-features li:last-child {
    border-bottom: none;
}

.herramientas-grid .servicio-features li i:first-child {
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
    color: #ff6303;
}

.herramientas-grid .servicio-btn {
    margin-top: auto;
    align-self: flex-start;
    width: 100%;
    padding: 14px 25px;
    font-size: 0.95rem;
}

.herramientas-grid .servicio-btn i:last-child {
    transition: transform 0.3s ease;
}

.herramientas-grid .servicio-btn:hover i:last-child {
    transform: rotate(180deg);
}

/* ===== SERVICIOS GRID (3 columnas) ===== */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.servicios-grid .servicio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
}

.servicios-grid .servicio-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 25px;
    min-height: 70px;
}

.servicios-grid .servicio-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.servicios-grid .servicio-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
    color: #fff;
    font-weight: 600;
}

.servicios-grid .servicio-desc {
    flex-grow: 1;
    margin-bottom: 25px;
    min-height: 70px;
    line-height: 1.6;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.servicios-grid .servicio-features {
    margin-bottom: 30px;
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.servicios-grid .servicio-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #888;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.servicios-grid .servicio-features li:last-child {
    border-bottom: none;
}

.servicios-grid .servicio-features li i:first-child {
    font-size: 0.9rem;
    width: 20px;
    flex-shrink: 0;
    color: #ff6303;
}

.servicios-grid .servicio-btn {
    margin-top: auto;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
}

/* ===== CALCULADORAS INTEGRADAS ===== */
.calculadora-container {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 3px solid #ff6303;
    margin-top: 40px;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.calculadora-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(37, 37, 37, 0.95) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 99, 3, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.calculadora-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calculadora-header h2 {
    color: #fff;
    font-size: 1.6rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calculadora-header h2 i {
    color: #ff6303;
}

.cerrar-calc {
    background: rgba(255, 99, 3, 0.2);
    border: 2px solid #ff6303;
    color: #ff6303;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cerrar-calc:hover {
    background: #ff6303;
    color: #fff;
    transform: rotate(90deg);
}

.calculadora-subtitle {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 30px;
}

.calc-field {
    margin-bottom: 25px;
}

.calc-field label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.calc-field select,
.calc-field input {
    width: 100%;
    padding: 12px 15px;
    background: #0a0a0a;
    border: 2px solid rgba(255, 99, 3, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.calc-field select:focus,
.calc-field input:focus {
    outline: none;
    border-color: #ff6303;
    box-shadow: 0 0 0 3px rgba(255, 99, 3, 0.2);
}

.calc-hint {
    color: #888;
    font-size: 0.8rem;
    margin-top: 6px;
}

.calc-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6303 0%, #ff8c42 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 99, 3, 0.4);
    transition: all 0.3s ease;
}

.calc-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 99, 3, 0.6);
}

.calculadora-result {
    margin-top: 30px;
    padding: 25px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(255, 99, 3, 0.4);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.result-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.result-value {
    color: #ff6303;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.result-note {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-whatsapp {
    text-align: center;
}

.result-whatsapp strong {
    display: block;
    color: #fff;
    margin-bottom: 12px;
    font-size: 1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Calculadora de Vivienda - Layout amplio */
.calculadora-vivienda {
    padding: 80px 40px;
}

.calculadora-vivienda .container {
    max-width: 1100px;
    margin: 0 auto;
}

.calculadora-vivienda .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 900px) {
    .calculadora-vivienda .grid {
        grid-template-columns: 1.4fr 1fr;
    }
}

.calculadora-vivienda .card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(37, 37, 37, 0.95) 100%);
    border: 2px solid rgba(255, 99, 3, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.calculadora-vivienda .section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed rgba(255, 99, 3, 0.2);
}

.calculadora-vivienda .section-title {
    color: #ff6303;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.calculadora-vivienda .field {
    margin-bottom: 20px;
}

.calculadora-vivienda label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.calculadora-vivienda input,
.calculadora-vivienda select {
    width: 100%;
    padding: 12px;
    background: #0a0a0a;
    border: 2px solid rgba(255, 99, 3, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
}

.calculadora-vivienda input:focus,
.calculadora-vivienda select:focus {
    outline: none;
    border-color: #ff6303;
    box-shadow: 0 0 0 3px rgba(255, 99, 3, 0.2);
}

.calculadora-vivienda .hint {
    color: #888;
    font-size: 0.8rem;
    margin-top: 6px;
}

.calculadora-vivienda .inline {
    display: flex;
    gap: 15px;
}

.calculadora-vivienda .inline > div {
    flex: 1;
}

.calculadora-vivienda .warning {
    color: #ff6b6b;
    font-size: 0.9rem;
    display: none;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.calc-submit-vivienda {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6303 0%, #ff8c42 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 99, 3, 0.4);
    transition: all 0.3s ease;
}

.calc-submit-vivienda:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 99, 3, 0.6);
}

.result-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6303;
    margin-bottom: 10px;
}

.result-sub {
    color: #b0b0b0;
    margin-bottom: 25px;
    font-size: 1rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #d0d0d0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result-row:last-child {
    border-bottom: none;
}

.pill {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 99, 3, 0.1);
    border: 1px solid rgba(255, 99, 3, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ff6303;
    margin: 4px;
}

.note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .herramientas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .herramientas-grid .servicio-card,
    .herramientas-grid .servicio-card.destacada {
        min-height: auto;
    }
    .herramientas-grid .servicio-title,
    .herramientas-grid .servicio-title.destacado,
    .herramientas-grid .servicio-desc {
        min-height: auto;
    }
}

@media (max-width: 968px) {
    .servicios-title { font-size: 2.5rem; }
    .servicios-stats { grid-template-columns: 1fr; gap: 20px; }
    .cta-destacada-title { font-size: 2.2rem; }
    .cta-destacada-content { padding: 40px 20px; }
    .cta-destacada-btn { padding: 18px 35px; font-size: 1rem; }
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .servicios-grid .servicio-card {
        min-height: auto;
    }
    .servicios-grid .servicio-title,
    .servicios-grid .servicio-desc {
        min-height: auto;
    }
    .calculadora-vivienda {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .servicios-separador {
        gap: 15px;
        padding: 40px 10px;
    }
    .separador-texto {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
}