
/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header (mantener tu header existente) */
header {
    background: linear-gradient(135deg, #0056b3, #003366);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section Servicios */
.services1-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.85)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.services1-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.services1-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: #e9ecef;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #0056b3;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #6c757d;
    margin: 0 5px;
}

/* Sección de Introducción */
.intro-services1 {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.intro-services1 h2 {
    color: #003366;
    font-size: 2.3rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.intro-services1 h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffd700;
}

.intro-services1 p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Sección de Servicios */
.services1-section {
    padding: 60px 0;
    background: #f1f5f9;
}

.services1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service1-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service1-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service1-image {
    height: 200px;
    overflow: hidden;
}

.service1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service1-card:hover .service1-image img {
    transform: scale(1.05);
}

.service1-content1 {
    padding: 30px;
}

.service1-content1 h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.service1-content1 h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffd700;
}

.service1-content1 p {
    margin-bottom: 20px;
    color: #555;
}

.service1-features {
    margin: 20px 0;
}

.service1-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.service1-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0056b3;
    font-weight: bold;
}

.service1-link {
    display: inline-block;
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.service1-link:hover {
    color: #003366;
    text-decoration: underline;
}

/* Sección de Enfoque */
.approach-section {
    padding: 80px 0;
    background: white;
}

.approach-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.approach-content1 h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 25px;
}

.approach-content1 p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.approach-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer (mantener tu footer existente) */
footer {
    background: #003366;
    color: white;
    padding: 40px 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .services1-hero h1 {
        font-size: 2.3rem;
    }
    
    .services1-hero p {
        font-size: 1.1rem;
    }
    
    .intro-services1 h2 {
        font-size: 1.8rem;
    }
    
    .services1-grid {
        grid-template-columns: 1fr;
    }
}
