/* public/css/servicios.css */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #a8edea, #fed6e3);
}

/* Header */
header {
    background: white;
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007BFF;
}

/* Services Section */
.services-section {
    background: #fff;
    padding: 60px 30px;
}

.services-section .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.services-section h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f0faff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.back-btn {
    display: inline-block;
    margin-top: 40px;
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
    }

    .services-section h1 {
        font-size: 2rem;
    }
}
