
/* 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;
        }
        
        /* Estilos del header y navegación */
        header {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        img {
            border: 1px solid;
            border-radius: 5px;
        }
            
        }
        /*
        .logo-img {
            width: 50px;
            height: 50px;
            background-color: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: bold;
            color: #3498db;
        }
        */
        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        nav ul {
            list-style: none;
            display: flex;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        /* Estilos del contenido principal */
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            min-height: calc(100vh - 200px);
        }
        
        section {
            display: none;
            padding: 2.5rem;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        section.active {
            display: block;
        }
        
        h1 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #3498db;
            padding-bottom: 0.5rem;
            font-size: 2.2rem;
        }
        
        h2 {
            color: #3498db;
            margin: 1.5rem 0 1rem;
            font-size: 1.5rem;
        }
        
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        
        /* Estilos de las imágenes */
        .imagenes-centro {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2.5rem 0;
            flex-wrap: wrap;
        }
        
        .imagen-container {
            width: 320px;
            height: 220px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .imagen-container:hover {
            transform: translateY(-5px);
        }
        
        .imagen-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Estilos de la sección de servicios */
        .servicios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
            margin-top: 2rem;
        }
        
        .servicio {
            background-color: #f8f9fa;
            padding: 1.8rem;
            border-radius: 8px;
            border-left: 5px solid #3498db;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .servicio:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .servicio h2 {
            margin-top: 0;
        }
        
        /* Estilos del formulario de contacto */
        form {
            display: grid;
            gap: 1.2rem;
            max-width: 600px;
            margin-top: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
        }
        
        input, textarea, select {
            padding: 0.85rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        input:focus, textarea:focus, select:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
        button {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 0.85rem 1.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: all 0.3s;
            justify-self: start;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        button:hover {
            background: linear-gradient(135deg, #2980b9, #3498db);
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        
        /* Estilos del footer */
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            line-height: 2;
            padding: 0.3rem 0;

            
        }
        /*
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding:0 0rem;
        
            
        }
             */
        
        /*
        .footer-content p {
            margin-bottom: 1.2rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.2rem;
        }
        
        .footer-links a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #5dade2;
            text-decoration: underline;
        }
        */
        /* Estilos responsivos */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 1rem;
            }
            
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .imagenes-centro {
                flex-direction: column;
                align-items: center;
            }
            
            .imagen-container {
                width: 100%;
                max-width: 400px;
            }
        }
    