/* ========================================
   OUR SERVICES SECTION STYLES
   ======================================== */

.our-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.our-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(27,66,119,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23services-dots)"/></svg>');
    opacity: 0.6;
}

/* Header de la sección */
.services-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1B4277;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1B4277, #FF6B35);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Categorías de servicios */
.services-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Tarjetas de categorías */
.service-category-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: all 0.6s ease;
}

.service-category-card:hover::before {
    left: 100%;
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
}

/* Header de categoría */
.category-header {
    background: linear-gradient(135deg, #1B4277, #2c5282);
    color: white;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 107, 53, 0.3);
    border-color: #FF6B35;
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.service-category-card:hover .category-icon i {
    transform: scale(1.1);
}

.category-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-title p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Contenido de categoría */
.category-content {
    padding: 3rem;
}

.category-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

/* Grid de servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid #FF6B35;
    position: relative;
}

.service-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #1B4277;
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B4277;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-item h4::before {
    content: '⚙️';
    font-size: 1.1rem;
}

.service-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Características de servicios */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #1B4277;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.8rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: #FF6B35;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Call to Action */
.services-cta {
    background: linear-gradient(135deg, #1B4277, #2c5282);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-services-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-services-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1B4277;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.btn i {
    font-size: 1.2rem;
}

/* Animaciones de entrada */
.service-category-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.service-category-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.services-cta.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .our-services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .category-title h3 {
        font-size: 1.5rem;
    }
    
    .category-content {
        padding: 2rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Enhanced Cards */
.enhanced-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid rgba(27, 66, 119, 0.1);
    box-shadow: 0 20px 40px rgba(27, 66, 119, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    backdrop-filter: blur(10px);
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1B4277, #FF6B35);
    z-index: 2;
}

.enhanced-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 66, 119, 0.05), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(27, 66, 119, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

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

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

.card-header {
    background: linear-gradient(135deg, #1B4277, #2c5282);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.enhanced-card:hover .card-header::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FF6B35;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.enhanced-card:hover .card-icon {
    transform: scale(1.05);
    background: rgba(255, 107, 53, 0.2);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
    border-color: #ffffff;
}

.card-icon i {
    font-size: 2.5rem;
    color: #FF6B35;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.enhanced-card:hover .card-icon i {
    color: #ffffff;
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

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

.card-title h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
  
    letter-spacing: 3px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 4;
}

.enhanced-card:hover .card-title h3 {
    color: #FF6B35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-subtitle {
    font-size: 1.1rem;
    color: #E3F2FD;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.4;
    transition: all 0.4s ease;
    position: relative;
    z-index: 4;
}

.enhanced-card:hover .card-subtitle {
    opacity: 1;
    color: #ffffff;
}

.card-content {
    padding: 2.5rem;
}

.enhanced-card .card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Estilos básicos para tarjetas */
.service-category-card {
    background: #ffffff !important;
    border: 2px solid #FF6B35 !important;
    border-radius: 15px !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    min-height: 300px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(27, 66, 119, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.category-header {
    background: #1B4277 !important;
    color: white !important;
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    border-radius: 13px 13px 0 0 !important;
}

.category-icon {
    width: 60px !important;
    height: 60px !important;
    background: #FF6B35 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.service-category-card:hover .category-icon {
    transform: scale(1.05);
    background: rgba(255, 107, 53, 0.2);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
    border-color: #ffffff;
}

.category-icon i {
    font-size: 24px !important;
    color: white !important;
}

.service-category-card:hover .category-icon i {
    color: #ffffff;
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.category-title h3 {
    font-size: 18px !important;
    font-weight: bold !important;
    margin: 0 0 5px 0 !important;
    color: white !important;
}

.service-category-card:hover .category-title h3 {
    color: #FF6B35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-title p {
    font-size: 14px !important;
    color: #E3F2FD !important;
    margin: 0 !important;
}

.service-category-card:hover .category-title p {
    opacity: 1;
    color: #ffffff;
}

.category-content {
    padding: 20px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.category-content p {
    color: #333 !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
    font-size: 14px !important;
}

.category-content .btn {
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    display: inline-block !important;
    background: #1B4277 !important;
    color: white !important;
    border: none !important;
    margin-top: 10px !important;
}

.category-content .btn-primary {
    background: #1B4277;
    color: white;
    border: 2px solid #1B4277;
    box-shadow: 0 6px 20px rgba(27, 66, 119, 0.3);
}

.category-content .btn-primary:hover {
    background: #FF6B35;
    border-color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.card-content-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-content-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-image:hover {
    border-color: #FF6B35;
    background: linear-gradient(135deg, #fff5f2, #ffe8e0);
}

.service-image::before {
    content: '📷';
    font-size: 3rem;
    color: #adb5bd;
    transition: all 0.3s ease;
}

.service-image:hover::before {
    color: #FF6B35;
    transform: scale(1.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    transition: all 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-description {
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B4277;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B4277;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #FF6B35;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1B4277;
    margin: 0 0 0.5rem 0;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.service-benefits {
    background: linear-gradient(135deg, rgba(27, 66, 119, 0.05), rgba(255, 107, 53, 0.05));
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 2px solid rgba(27, 66, 119, 0.1);
}

.service-benefits h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1B4277;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(27, 66, 119, 0.1);
    color: #555;
    line-height: 1.6;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: #FF6B35;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefits-list strong {
    color: #1B4277;
}

.service-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(27, 66, 119, 0.1));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: white;
}

.highlight-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1B4277;
    margin: 0 0 0.8rem 0;
}

.highlight-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.card-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.card-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-actions .btn-primary {
    background: #1B4277;
    color: white;
    border: 2px solid #1B4277;
    box-shadow: 0 6px 20px rgba(27, 66, 119, 0.3);
}

.card-actions .btn-primary:hover {
    background: #FF6B35;
    border-color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.card-actions .btn-secondary {
    background: transparent;
    color: #1B4277;
    border: 2px solid #1B4277;
    box-shadow: 0 6px 20px rgba(27, 66, 119, 0.2);
}

.card-actions .btn-secondary:hover {
    background: #1B4277;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(27, 66, 119, 0.4);
}

/* Professional hover effects */
.enhanced-card {
    position: relative;
}

.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(27, 66, 119, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

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

/* Responsive adjustments for enhanced cards */
@media (max-width: 768px) {
    .enhanced-card {
        margin-bottom: 2rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
    
    .card-title h3 {
        font-size: 1.5rem;
    }
    
    .card-subtitle {
        font-size: 1rem;
    }
    
    .card-content {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image {
        height: 250px;
        order: -1;
    }
    
    .service-image::before {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .service-benefits {
        padding: 1.5rem;
    }
    
    .service-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .highlight-icon i {
        font-size: 1.5rem;
    }
    
    .card-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .card-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Responsive para tarjetas regulares */
    .service-category-card {
        margin-bottom: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .category-title h3 {
        font-size: 1.5rem;
    }
    
    .category-title p {
        font-size: 1rem;
    }
    
    .category-content {
        padding: 1.5rem;
    }
    
    .category-content .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .card-header {
        padding: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .features-title {
        font-size: 1.3rem;
    }
    
    .service-benefits h4 {
        font-size: 1.2rem;
    }
    
    .highlight-content h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .category-title h3 {
        font-size: 1.3rem;
    }
    
    .service-item h4 {
        font-size: 1.1rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

